field=models.CharField(blank=True,help_text="If the default gitlab API token won't work for you, provide an alternative",max_length=256),
),
migrations.AddField(
model_name='project',
name='gitlab_url',
field=models.CharField(blank=True,help_text="If your project isn't in the UW git repo, you can provide an alternative gitlab url here.",max_length=256),
field=models.CharField(blank=True,help_text='This can be found under general project settings (its an integer). If you have a CHANGELOG.md file in the root of your repo it will be read.',max_length=100),
),
migrations.AlterField(
model_name='project',
name='groups',
field=models.ManyToManyField(help_text='Include or add all groups which work with this project from a development perspective',to='projector.Group'),
),
migrations.AlterField(
model_name='project',
name='hostnames',
field=models.TextField(blank=True,help_text='List of allowed domains. Separate by commas. Overlay will only work on these hosts'),
),
migrations.AlterField(
model_name='project',
name='project_created',
field=models.DateField(help_text='The approximate date this project started development or was launched. Only year / term will be used by site.'),
),
migrations.AlterField(
model_name='project',
name='scope',
field=models.CharField(blank=True,choices=[('Local','Local (Used by Faculty/Dept Internally)'),('Cross-Department','Cross-Department (Invite only)'),('Campus-Wide','Campus-Wide (Available to All)')],max_length=100),
),
migrations.AlterField(
model_name='project',
name='tagline',
field=models.CharField(help_text='Short, catchy sentence about the project',max_length=100),
help_text="List of allowed domains. Separate by commas.",
help_text="List of allowed domains. Separate by commas. Overlay will only work on these hosts",
blank=True
)
gitlab_id=models.CharField(
max_length=100,blank=True,
help_text="This can be found under general project settings (its an integer). If you have a CHANGELOG.md file in the root of your repo it will be read."
)
gitlab_access_token=models.CharField(
max_length=256,
blank=True,
help_text="If the default gitlab API token won't work for you, provide an alternative"
)
gitlab_url=models.CharField(
max_length=256,
blank=True,
help_text="If your project isn't in the UW git repo, you can provide an alternative gitlab url here."