Skip to content

Commit e966ae1

Browse files
Merge pull request #11592 from ihorsokhanexoft/feature/ENG-10289
[ENG-10289][ENG-10290] Added sso_in_progress field to Institution model and in admin
2 parents 7c7dab7 + 261a680 commit e966ae1

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Generated by Django 4.2.17 on 2026-02-16 14:34
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('osf', '0035_merge_20251215_1451'),
10+
]
11+
12+
operations = [
13+
migrations.AddField(
14+
model_name='institution',
15+
name='sso_in_progress',
16+
field=models.BooleanField(default=False),
17+
),
18+
]

osf/models/institution.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@ class Institution(DirtyFieldsMixin, Loggable, ObjectIDMixin, BaseModel, Guardian
125125
default='',
126126
help_text='Full URL where institutional admins can access archived metrics reports.',
127127
)
128+
sso_in_progress = models.BooleanField(default=False)
128129

129130
class Meta:
130131
# custom permissions for use in the OSF Admin App

0 commit comments

Comments
 (0)