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

14 lines
301 B
Ruby
Raw Permalink Normal View History

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