fix error

This commit is contained in:
邱博亞 2023-03-07 21:40:01 +08:00
parent ab6b79eb29
commit 0660a12bff
2 changed files with 8 additions and 5 deletions

View File

@ -128,11 +128,7 @@ class Admin::PropertyHiresController < OrbitAdminController
end
def settings
if PropertyHireSetting.count == 0
@settings = PropertyHireSetting.create
else
@settings = PropertyHireSetting.first
end
@settings = PropertyHireSetting.first
if request.request_method == "PATCH"
@settings.update_attributes(settings_params.except("property_day_settings"))
@settings.save

View File

@ -11,6 +11,13 @@ module PropertyHire
authorizable
frontend_enabled
data_count 1..30
require File.expand_path('../../../app/models/property_hire_setting', __FILE__)
if defined?(PropertyHireSetting)
if PropertyHireSetting.count == 0
PropertyHireSetting.create
end
end
if File.basename($0) != 'rake'
begin
avoid_page_cache HireEmailSet