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

Commit

Permalink
Disable messaging out of the box.
Browse files Browse the repository at this point in the history
  • Loading branch information
ralphbean committed Jan 15, 2014
1 parent 1dbbab8 commit 6f58fbd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion fmn/lib/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,9 @@ class Preference(BASE):
batch_count = sa.Column(sa.Integer, nullable=True)

# Hold the state of start/stop commands to the irc bot and others.
enabled = sa.Column(sa.Boolean, default=True, nullable=False)
# Disabled by default so that we can provide robust default filters without
# forcing new users into an opt-out situation.
enabled = sa.Column(sa.Boolean, default=False, nullable=False)

openid = sa.Column(
sa.Text,
Expand Down

0 comments on commit 6f58fbd

Please sign in to comment.