misc: make module repository url optional

This commit is contained in:
Frédéric Péters 2018-12-26 10:05:15 +01:00
parent 546d0cd515
commit 8ecff700c4
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ class InstalledService(models.Model):
class Module(models.Model):
name = models.CharField(max_length=50)
repository_url = models.URLField()
repository_url = models.URLField(blank=True)
def __unicode__(self):
return self.name