blob: a1ea008390ef156c52fa385cc865d8f3aa21f209 (
plain)
1
2
3
4
5
6
7
8
9
|
class ApplicationController < ActionController::Base
protect_from_forgery
ActiveSupport.run_load_hooks(:application_controller, self)
def not_found
raise RECORD_NOT_FOUND.new('Not Found')
end
end
|