mirror of
https://github.com/internetee/registry.git
synced 2025-05-17 17:59:47 +02:00
16 lines
336 B
Ruby
16 lines
336 B
Ruby
class RegistrarController < ApplicationController
|
|
before_action :authenticate_user!
|
|
layout 'registrar/application'
|
|
|
|
include Registrar::ApplicationHelper
|
|
|
|
helper_method :depp_controller?
|
|
def depp_controller?
|
|
false
|
|
end
|
|
|
|
helper_method :head_title_sufix
|
|
def head_title_sufix
|
|
t(:registrar_head_title_sufix)
|
|
end
|
|
end
|