Module: Maestrano::Connector::Rails::Concerns::External::ClassMethods
- Defined in:
- app/models/maestrano/connector/rails/concerns/external.rb
Instance Method Summary collapse
- #create_account_link(organization = nil) ⇒ Object
-
#entities_list ⇒ Object
Return an array of all the entities that the connector can synchronize If you add new entities, you need to generate a migration to add them to existing organizations.
- #external_name ⇒ Object
- #get_client(organization) ⇒ Object
Instance Method Details
#create_account_link(organization = nil) ⇒ Object
13 14 15 |
# File 'app/models/maestrano/connector/rails/concerns/external.rb', line 13 def create_account_link(organization = nil) raise 'Not implemented' end |
#entities_list ⇒ Object
Return an array of all the entities that the connector can synchronize If you add new entities, you need to generate a migration to add them to existing organizations
20 21 22 |
# File 'app/models/maestrano/connector/rails/concerns/external.rb', line 20 def entities_list raise 'Not implemented' end |
#external_name ⇒ Object
9 10 11 |
# File 'app/models/maestrano/connector/rails/concerns/external.rb', line 9 def external_name raise 'Not implemented' end |
#get_client(organization) ⇒ Object
5 6 7 |
# File 'app/models/maestrano/connector/rails/concerns/external.rb', line 5 def get_client(organization) raise 'Not implemented' end |