diff options
| author | Teddy Wing | 2012-05-30 19:36:43 -0400 |
|---|---|---|
| committer | Teddy Wing | 2012-05-30 19:36:43 -0400 |
| commit | fb801ab393a47cdc1bae3af063845f52dbdd258a (patch) | |
| tree | 74352c0f6d83f5f4c2912f35ed2516741e6bd8f0 /app/models | |
| parent | 3d71d19460c2dc28c27c4623957feb842baf6ce2 (diff) | |
| download | inboxes-fb801ab393a47cdc1bae3af063845f52dbdd258a.tar.bz2 | |
Settings: added a settings module so that users can turn email notifications for new messages on or off.
Diffstat (limited to 'app/models')
| -rw-r--r-- | app/models/inboxes_setting.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/app/models/inboxes_setting.rb b/app/models/inboxes_setting.rb new file mode 100644 index 0000000..1581131 --- /dev/null +++ b/app/models/inboxes_setting.rb @@ -0,0 +1,5 @@ +class InboxesSetting < ActiveRecord::Base + + attr_accessible :send_email_notification + +end |
