core: add slug to application

This commit is contained in:
Jens Langhammer
2018-12-26 17:17:39 +01:00
parent 7178468135
commit 2eae37107d
3 changed files with 22 additions and 1 deletions

View File

@ -55,6 +55,7 @@ class Application(RuleModel):
add custom fields and other properties"""
name = models.TextField()
slug = models.SlugField()
launch_url = models.URLField(null=True, blank=True)
icon_url = models.TextField(null=True, blank=True)
provider = models.OneToOneField('Provider', null=True,