internetee-registry/app/controllers/registrar_controller.rb
2015-04-10 10:59:39 +03:00

11 lines
237 B
Ruby

class RegistrarController < ApplicationController
before_action :authenticate_user!
layout 'registrar/application'
include Registrar::ApplicationHelper
helper_method :depp_controller?
def depp_controller?
false
end
end