10 lines
212 B
Ruby
10 lines
212 B
Ruby
|
class PropertyHireSetting
|
||
|
include Mongoid::Document
|
||
|
include Mongoid::Timestamps
|
||
|
|
||
|
field :auto_approve, type: Boolean, :default => false
|
||
|
|
||
|
def self.auto_approve_enabled?
|
||
|
self.first.auto_approve
|
||
|
end
|
||
|
end
|