mirror of
https://github.com/internetee/registry.git
synced 2025-05-16 17:37:17 +02:00
10 lines
211 B
Ruby
10 lines
211 B
Ruby
module Admin
|
|
class BaseController < ApplicationController
|
|
before_action :authenticate_user!
|
|
helper_method :head_title_sufix
|
|
|
|
def head_title_sufix
|
|
t(:admin_head_title_sufix)
|
|
end
|
|
end
|
|
end
|