internetee-registry/app/controllers/registrant_controller.rb
Priit Tark d444552b9b TEMP
2015-05-21 11:24:44 +03:00

11 lines
266 B
Ruby

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