mirror of
https://github.com/internetee/registry.git
synced 2025-05-17 01:47:18 +02:00
8 lines
181 B
Ruby
8 lines
181 B
Ruby
class AdminController < ApplicationController
|
|
before_action :authenticate_user!
|
|
|
|
helper_method :head_title_sufix
|
|
def head_title_sufix
|
|
t(:admin_head_title_sufix)
|
|
end
|
|
end
|