Class: SoqlDashboard::Configuration
- Inherits:
-
Object
- Object
- SoqlDashboard::Configuration
- Defined in:
- lib/soql_dashboard.rb
Instance Attribute Summary collapse
-
#audit ⇒ Object
Returns the value of attribute audit.
-
#salesforce_integration_model ⇒ Object
Returns the value of attribute salesforce_integration_model.
-
#user_class ⇒ Object
Returns the value of attribute user_class.
-
#user_method ⇒ Object
Returns the value of attribute user_method.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
43 44 45 46 47 48 |
# File 'lib/soql_dashboard.rb', line 43 def initialize @salesforce_integration_model = nil @user_class = nil @user_method = :current_user @audit = true end |
Instance Attribute Details
#audit ⇒ Object
Returns the value of attribute audit.
41 42 43 |
# File 'lib/soql_dashboard.rb', line 41 def audit @audit end |
#salesforce_integration_model ⇒ Object
Returns the value of attribute salesforce_integration_model.
41 42 43 |
# File 'lib/soql_dashboard.rb', line 41 def salesforce_integration_model @salesforce_integration_model end |
#user_class ⇒ Object
Returns the value of attribute user_class.
41 42 43 |
# File 'lib/soql_dashboard.rb', line 41 def user_class @user_class end |
#user_method ⇒ Object
Returns the value of attribute user_method.
41 42 43 |
# File 'lib/soql_dashboard.rb', line 41 def user_method @user_method end |