summaryrefslogtreecommitdiff
path: root/app/models/call_forward_case.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/call_forward_case.rb')
-rw-r--r--app/models/call_forward_case.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/app/models/call_forward_case.rb b/app/models/call_forward_case.rb
new file mode 100644
index 0000000..a0b872b
--- /dev/null
+++ b/app/models/call_forward_case.rb
@@ -0,0 +1,13 @@
+class CallForwardCase < ActiveRecord::Base
+
+ attr_accessible :value
+
+ has_many :call_forwards
+
+ validates_presence_of :value
+
+ def to_s
+ self.value
+ end
+
+end