FEATURE: proper mailing list mode

once enable_mailing_list_mode is enabled any user can elect
to get every post via email unless they opt out of category or topic
This commit is contained in:
Sam
2014-02-07 11:06:35 +11:00
parent 3a1c5ed39d
commit 227873df78
23 changed files with 134 additions and 68 deletions

View File

@@ -0,0 +1,5 @@
class AddMailingListModeToUsers < ActiveRecord::Migration
def change
rename_column :users, :watch_new_topics, :mailing_list_mode
end
end