We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d18822 commit 930da33Copy full SHA for 930da33
anthill/projects/models.py
@@ -65,7 +65,7 @@ class Role(models.Model):
65
class Link(models.Model):
66
name = models.CharField(max_length=100)
67
url = models.URLField()
68
- link_type = models.PositiveSmallIntegerField(choices=LINK_TYPES)
+ link_type = models.PositiveSmallIntegerField(choices=LINK_TYPES, default=SITE_LINK)
69
70
project = models.ForeignKey(Project, related_name='links')
71
0 commit comments