Module: Maestrano::Connector::Rails::Concerns::External::ClassMethods

Defined in:
app/models/maestrano/connector/rails/concerns/external.rb

Instance Method Summary collapse

Instance Method Details



13
14
15
# File 'app/models/maestrano/connector/rails/concerns/external.rb', line 13

def (organization = nil)
  raise 'Not implemented'
end

#entities_listObject

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_nameObject



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