Skip to content

Commit

Permalink
feat: add marked_authorized flag to SSO config
Browse files Browse the repository at this point in the history
  • Loading branch information
marlonkeating committed Nov 28, 2023
1 parent b0eca94 commit 6a9119d
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
23 changes: 23 additions & 0 deletions enterprise/migrations/0195_auto_20231128_0019.py
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.'),
),
]
9 changes: 9 additions & 0 deletions enterprise/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -3955,6 +3955,15 @@ class Meta:
)
)

marked_authorized = models.BooleanField(
blank=False,
null=False,
default=False,
help_text=_(
"If the edX Service Provider metadata was authorized from the Identity Provider side."
)
)

# ---------------------------- SAP Success Factors attribute mappings ---------------------------- #

odata_api_timeout_interval = models.PositiveIntegerField(
Expand Down

0 comments on commit 6a9119d

Please sign in to comment.