internetee-registry/app/controllers/registrant_controller.rb
2015-05-13 13:02:08 +03:00

16 lines
340 B
Ruby

class RegistrantController < ApplicationController
before_action :authenticate_user!
layout 'registrant/application'
include Registrant::ApplicationHelper
helper_method :depp_controller?
def depp_controller?
false
end
helper_method :head_title_sufix
def head_title_sufix
t(:registrant_head_title_sufix)
end
end