trabajo-afectivo/app/models/report/profile.rb

13 lines
264 B
Ruby
Raw Normal View History

# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
2015-10-20 08:48:43 +00:00
class Report::Profile < ApplicationModel
self.table_name = 'report_profiles'
validates :name, presence: true
2015-10-20 08:48:43 +00:00
store :condition
def self.list
where(active: true)
end
end