Class: Kanaui::EngineController
- Inherits:
-
ApplicationController
- Object
- ApplicationController
- Kanaui::EngineController
show all
- Defined in:
- app/controllers/kanaui/engine_controller.rb
Instance Method Summary
collapse
Instance Method Details
#current_tenant_user ⇒ Object
10
11
12
13
14
15
|
# File 'app/controllers/kanaui/engine_controller.rb', line 10
def current_tenant_user
user = current_user if respond_to?(:current_user)
Kanaui.current_tenant_user.call(session, user)
end
|
#get_layout ⇒ Object
6
7
8
|
# File 'app/controllers/kanaui/engine_controller.rb', line 6
def get_layout
layout ||= Kanaui.config[:layout]
end
|
#options_for_klient ⇒ Object
17
18
19
20
21
22
23
24
25
26
|
# File 'app/controllers/kanaui/engine_controller.rb', line 17
def options_for_klient
user = current_tenant_user
{
:username => user[:username],
:password => user[:password],
:session_id => user[:session_id],
:api_key => user[:api_key],
:api_secret => user[:api_secret]
}
end
|