heylium-webapp/app/controllers/application_controller.rb
2016-11-08 18:56:02 +01:00

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