summaryrefslogtreecommitdiff
path: root/app/models/voicemail_setting.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/voicemail_setting.rb')
-rw-r--r--app/models/voicemail_setting.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/app/models/voicemail_setting.rb b/app/models/voicemail_setting.rb
new file mode 100644
index 0000000..a8bb304
--- /dev/null
+++ b/app/models/voicemail_setting.rb
@@ -0,0 +1,12 @@
+class VoicemailSetting < ActiveRecord::Base
+ self.table_name = 'voicemail_prefs'
+ self.primary_key = 'username'
+
+ attr_accessible :username, :domain, :name_path, :greeting_path, :password, :notify, :attachment, :mark_read, :purge, :sip_account
+
+ has_one :sip_account, :foreign_key => 'auth_name'
+
+ validates_presence_of :username
+ validates_presence_of :domain
+ validates :username, :uniqueness => {:scope => :domain}
+end