mirror of
https://github.com/internetee/registry.git
synced 2025-05-17 09:57:23 +02:00
Added basic Registrant portal
This commit is contained in:
parent
90633160c0
commit
fdcad95683
28 changed files with 810 additions and 26 deletions
16
app/controllers/registrant_controller.rb
Normal file
16
app/controllers/registrant_controller.rb
Normal file
|
@ -0,0 +1,16 @@
|
|||
class RegistrantController < ApplicationController
|
||||
before_action :authenticate_user!
|
||||
layout 'registrant/application'
|
||||
|
||||
include Registrant::ApplicationHelper
|
||||
|
||||
helper_method :depp_controller?
|
||||
def depp_controller?
|
||||
false
|
||||
end
|
||||
|
||||
helper_method :head_title_sufix
|
||||
def head_title_sufix
|
||||
t(:registrant_head_title_sufix)
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue