-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add marked_authorized flag to SSO config
- Loading branch information
1 parent
b0eca94
commit 6a9119d
Showing
2 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Generated by Django 3.2.23 on 2023-11-28 00:19 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('enterprise', '0194_auto_20231013_1359'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='enterprisecustomerssoconfiguration', | ||
name='marked_authorized', | ||
field=models.BooleanField(default=False, help_text='If the edX Service Provider metadata was authorized from the Identity Provider side.'), | ||
), | ||
migrations.AddField( | ||
model_name='historicalenterprisecustomerssoconfiguration', | ||
name='marked_authorized', | ||
field=models.BooleanField(default=False, help_text='If the edX Service Provider metadata was authorized from the Identity Provider side.'), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters