X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/b993aa15c106eadf473fd64edbb9f3d9ddb7754a..ada0c32d0b9ce1f12c5c026b4825bbfd9891ba45:/apps/explorer/models.py diff --git a/apps/explorer/models.py b/apps/explorer/models.py index 10491f6a..9a5e0ffa 100644 --- a/apps/explorer/models.py +++ b/apps/explorer/models.py @@ -5,7 +5,6 @@ from django.contrib.auth.models import User from django.conf import settings from django.utils.translation import gettext_lazy as _ - class PanelSettings(models.Model): user = models.ForeignKey(User) left_panel = models.CharField(blank=True, max_length=80) @@ -18,6 +17,12 @@ class PanelSettings(models.Model): def __unicode__(self): return u"Panel settings for %s" % self.user.name +class Book(models.Model): + class Meta: + permissions = ( + ("can_add_files", "Can do hg add."), + ) + pass class PullRequest(models.Model): comitter = models.ForeignKey(User) # the user who request the pull