2018-02-05 09:15:50 +00:00
|
|
|
class PropertyHireSetting
|
|
|
|
include Mongoid::Document
|
|
|
|
include Mongoid::Timestamps
|
|
|
|
|
|
|
|
field :auto_approve, type: Boolean, :default => false
|
|
|
|
|
|
|
|
def self.auto_approve_enabled?
|
2020-03-23 17:26:52 +00:00
|
|
|
self.first.auto_approve rescue false
|
2018-02-05 09:15:50 +00:00
|
|
|
end
|
|
|
|
end
|