Class: BrickFTP::RESTfulAPI::ListGroups

Inherits:
Object
  • Object
show all
Includes:
Command
Defined in:
lib/brick_ftp/restful_api/list_groups.rb

Overview

List all groups

See Also:

Instance Method Summary collapse

Methods included from Command

included, #initialize

Instance Method Details

#callArray<BrickFTP::Types::Group>

Returns a list of all groups on the current site.

Returns:



17
18
19
20
21
# File 'lib/brick_ftp/restful_api/list_groups.rb', line 17

def call
  res = client.get('/api/rest/v1/groups.json')

  res.map { |i| BrickFTP::Types::Group.new(**i.symbolize_keys) }
end