Sha256: 8abd8366f96ccdcd79006f1464f342ef20da58b21b294a88362fdc966e68904b
Contents?: true
Size: 797 Bytes
Versions: 9
Compression:
Stored size: 797 Bytes
Contents
module Kenui class EngineController < ApplicationController layout :get_layout def get_layout layout ||= Kenui.config[:layout] end def current_tenant_user # If the rails application on which that engine is mounted defines such method (Devise), we extract the current user, # if not we default to nil, and serve our static mock configuration user = current_user if respond_to?(:current_user) Kenui.current_tenant_user.call(session, user) end 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 end end
Version data entries
9 entries across 9 versions & 1 rubygems