10 lines
184 B
Ruby
10 lines
184 B
Ruby
class BaseOrigamiController < ActionController::Base
|
|
include LoginVerification
|
|
layout "origami"
|
|
|
|
#before_action :check_installation
|
|
protect_from_forgery with: :exception
|
|
|
|
|
|
end
|