Class: Aptible::Auth::User

Inherits:
Resource
  • Object
show all
Defined in:
lib/aptible/auth/user.rb

Instance Method Summary collapse

Methods inherited from Resource

#namespace, #root_url

Instance Method Details

#operationsObject



23
24
25
26
# File 'lib/aptible/auth/user.rb', line 23

def operations
  # TODO: Implement query params for /operations
  []
end

#organizationsObject



17
18
19
20
21
# File 'lib/aptible/auth/user.rb', line 17

def organizations
  # Establish uniqueness of requests before loading all organizations
  # We can do this by reading the `organization` link for each role
  roles.map(&:links).map(&:organization).uniq(&:href).map(&:get)
end