Skip to content

Commit

Permalink
#130, #131, #132 Change "GeoPortal" branding language
Browse files Browse the repository at this point in the history
  • Loading branch information
rdmccann committed Mar 21, 2023
1 parent 57998a1 commit abcfc92
Showing 1 changed file with 34 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Generated by Django 4.1.7 on 2023-03-21 22:07

from django.db import migrations, models
import django.db.models.deletion


class Migration(migrations.Migration):

dependencies = [
('accounts', '0022_agol_portal_name_agoluserfields_auth_provider_and_more'),
]

operations = [
migrations.AlterField(
model_name='agol',
name='portal_name',
field=models.CharField(blank=True, choices=[('geosecure', 'GeoSecure'), ('geoplatform', 'GeoPlatform')], max_length=50, null=True),
),
migrations.AlterField(
model_name='agoluserfields',
name='portal',
field=models.ForeignKey(default=1, on_delete=django.db.models.deletion.PROTECT, to='accounts.agol'),
),
migrations.AlterField(
model_name='responseproject',
name='authoritative_group',
field=models.ForeignKey(limit_choices_to={'is_auth_group': True}, on_delete=django.db.models.deletion.PROTECT, to='accounts.agolgroup', verbose_name='Authoritative Group'),
),
migrations.AlterField(
model_name='responseproject',
name='role',
field=models.ForeignKey(blank=True, help_text='System default will be used if left blank.', limit_choices_to={'is_available': True}, null=True, on_delete=django.db.models.deletion.PROTECT, to='accounts.agolrole', verbose_name='GeoPlatform Role'),
),
]

0 comments on commit abcfc92

Please sign in to comment.