mirror of
https://github.com/internetee/registry.git
synced 2025-05-16 09:27:19 +02:00
9 lines
210 B
Ruby
9 lines
210 B
Ruby
class AdminController < ApplicationController
|
|
layout 'admin/application'
|
|
before_action :authenticate_user!
|
|
|
|
helper_method :head_title_sufix
|
|
def head_title_sufix
|
|
t(:admin_head_title_sufix)
|
|
end
|
|
end
|