6 lines
125 B
Ruby
6 lines
125 B
Ruby
class ApplicationController < ActionController::Base
|
|
protect_from_forgery :except => :receive
|
|
layout 'application'
|
|
|
|
|
|
end
|