11 lines
155 B
Ruby
Executable File
11 lines
155 B
Ruby
Executable File
class ApplicationController < ActionController::Base
|
|
protect_from_forgery with: :exception
|
|
|
|
def balloon_not_found
|
|
|
|
render "not_found"
|
|
|
|
end
|
|
|
|
end
|