mirror of
https://github.com/internetee/registry.git
synced 2025-05-18 02:09:39 +02:00
9 lines
197 B
Ruby
9 lines
197 B
Ruby
class RegistrarController < ApplicationController
|
|
before_action :authenticate_user!
|
|
layout 'registrar/application'
|
|
|
|
helper_method :depp_controller?
|
|
def depp_controller?
|
|
false
|
|
end
|
|
end
|