2014-02-03 19:23:00 +00:00
|
|
|
# Copyright (C) 2012-2014 Zammad Foundation, http://zammad-foundation.org/
|
2013-06-12 15:59:58 +00:00
|
|
|
|
2012-09-20 12:08:02 +00:00
|
|
|
class Overview < ApplicationModel
|
2012-04-10 14:06:46 +00:00
|
|
|
store :condition
|
|
|
|
store :order
|
|
|
|
store :view
|
2012-10-14 21:00:33 +00:00
|
|
|
validates :name, :presence => true
|
2013-01-31 23:44:25 +00:00
|
|
|
validates :prio, :presence => true
|
|
|
|
validates :link, :presence => true
|
2014-12-25 23:41:00 +00:00
|
|
|
end
|