Skip to content
This repository has been archived by the owner on Nov 26, 2018. It is now read-only.

Commit

Permalink
Banned status.
Browse files Browse the repository at this point in the history
  • Loading branch information
vbabiy committed Oct 30, 2015
1 parent cce5621 commit 8db1fc0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion botbot/apps/bots/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,12 +117,14 @@ def active(self):
class Channel(TimeStampedModel):
PENDING = 'PENDING'
ACTIVE = 'ACTIVE'
BANNED = 'BANNED'
ARCHIVED = 'ARCHIVED'

STATUS_CHOICES = (
(PENDING, 'Pending'),
(ACTIVE, 'Active'),
(ARCHIVED, 'Archived')
(ARCHIVED, 'Archived'),
(BANNED, 'Banned')
)

# These are the default plugin slugs.
Expand Down

0 comments on commit 8db1fc0

Please sign in to comment.