Merge commit 'c62604b5f6' into kb_migration

This commit is contained in:
KMY 2023-04-20 17:41:07 +09:00
commit a1f6ef00db
86 changed files with 929 additions and 221 deletions

View file

@ -8,6 +8,8 @@ module Admin
layout 'admin'
before_action :set_body_classes
before_action :set_cache_headers
after_action :verify_authorized
private
@ -16,6 +18,10 @@ module Admin
@body_classes = 'admin'
end
def set_cache_headers
response.cache_control.replace(private: true, no_store: true)
end
def set_user
@user = Account.find(params[:account_id]).user || raise(ActiveRecord::RecordNotFound)
end