Skip to content

Commit ccb422e

Browse files
committed
Default to track=True for new projects
1 parent b9f57e4 commit ccb422e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

codespeed/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class Project(models.Model):
2929
blank=True, max_length=100)
3030
commit_browsing_url = models.CharField("Commit browsing URL",
3131
blank=True, max_length=200)
32-
track = models.BooleanField("Track changes", default=False)
32+
track = models.BooleanField("Track changes", default=True)
3333

3434
def __unicode__(self):
3535
return self.name

0 commit comments

Comments
 (0)