Class: BjondApi::BjondAppConfig
- Inherits:
-
Object
- Object
- BjondApi::BjondAppConfig
- Includes:
- Singleton
- Defined in:
- lib/bjond-app-config.rb
Instance Attribute Summary collapse
-
#active_definition ⇒ Object
Returns the value of attribute active_definition.
-
#encryption_key_name ⇒ Object
Returns the value of attribute encryption_key_name.
-
#group_configuration ⇒ Object
Returns the value of attribute group_configuration.
-
#group_configuration_schema ⇒ Object
Returns the value of attribute group_configuration_schema.
-
#user_configuration_schema ⇒ Object
Returns the value of attribute user_configuration_schema.
Instance Method Summary collapse
- #configure_group(config, bjond_registration, group_id) ⇒ Object
- #get_group_configuration(bjond_registration, group_id) ⇒ Object
- #get_user_configuration(bjond_registration) ⇒ Object
Instance Attribute Details
#active_definition ⇒ Object
Returns the value of attribute active_definition.
7 8 9 |
# File 'lib/bjond-app-config.rb', line 7 def active_definition @active_definition end |
#encryption_key_name ⇒ Object
Returns the value of attribute encryption_key_name.
7 8 9 |
# File 'lib/bjond-app-config.rb', line 7 def encryption_key_name @encryption_key_name end |
#group_configuration ⇒ Object
Returns the value of attribute group_configuration.
7 8 9 |
# File 'lib/bjond-app-config.rb', line 7 def group_configuration @group_configuration end |
#group_configuration_schema ⇒ Object
Returns the value of attribute group_configuration_schema.
7 8 9 |
# File 'lib/bjond-app-config.rb', line 7 def group_configuration_schema @group_configuration_schema end |
#user_configuration_schema ⇒ Object
Returns the value of attribute user_configuration_schema.
7 8 9 |
# File 'lib/bjond-app-config.rb', line 7 def user_configuration_schema @user_configuration_schema end |
Instance Method Details
#configure_group(config, bjond_registration, group_id) ⇒ Object
11 12 13 |
# File 'lib/bjond-app-config.rb', line 11 def configure_group(config, bjond_registration, group_id) puts '[ App group configuration method not implemented. This can be set via BjondAppConfig.instance.configure_group ]' end |
#get_group_configuration(bjond_registration, group_id) ⇒ Object
15 16 17 |
# File 'lib/bjond-app-config.rb', line 15 def get_group_configuration(bjond_registration, group_id) puts '[ get_group_configuration method not implemented. This can be set via BjondAppConfig.instance.get_group_configuration ]' end |
#get_user_configuration(bjond_registration) ⇒ Object
19 20 21 |
# File 'lib/bjond-app-config.rb', line 19 def get_user_configuration(bjond_registration) puts '[ get_user_configuration method not implemented. This can be set via BjondAppConfig.instance.get_user_configuration ]' end |