mirror of
https://github.com/internetee/registry.git
synced 2025-05-16 17:37:17 +02:00
11 lines
266 B
Ruby
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
|