mirror of
https://github.com/internetee/registry.git
synced 2025-05-17 09:57:23 +02:00
11 lines
237 B
Ruby
11 lines
237 B
Ruby
class RegistrarController < ApplicationController
|
|
before_action :authenticate_user!
|
|
layout 'registrar/application'
|
|
|
|
include Registrar::ApplicationHelper
|
|
|
|
helper_method :depp_controller?
|
|
def depp_controller?
|
|
false
|
|
end
|
|
end
|