pic_vert_app/app/controllers/application_controller.rb
2013-01-08 22:47:42 +01:00

11 lines
187 B
Ruby

# -*- encoding : utf-8 -*-
class ApplicationController < ActionController::Base
protect_from_forgery
helper_method :has_permission?
def has_permission?(text)
true
end
end