Class: School21::ParticipantsApi
- Defined in:
- lib/school21/api/participants_api.rb
Constant Summary
Constants inherited from BaseApi
BaseApi::SINGLE_AUTH_PARTICIPANT
Instance Method Summary collapse
- #participant(login) ⇒ Object
- #participant_project(login, project_id) ⇒ Object
- #participant_projects(login, options: {}) ⇒ Object
Methods inherited from BaseApi
#authenticated_request, base_uri, #execute_request, #initialize, #new_api_call_builder, #new_parameter, #new_request_builder, #new_response_handler, response_convertor
Constructor Details
This class inherits a constructor from School21::BaseApi
Instance Method Details
#participant(login) ⇒ Object
5 6 7 8 9 10 |
# File 'lib/school21/api/participants_api.rb', line 5 def participant(login) path = "/participants/#{login}" new_request = authenticated_request(HttpMethod::GET, path, :api_v1) execute_request(new_request) end |
#participant_project(login, project_id) ⇒ Object
24 25 26 27 28 29 |
# File 'lib/school21/api/participants_api.rb', line 24 def participant_project(login, project_id) path = "/participants/#{login}/projects/#{project_id}" new_request = authenticated_request(HttpMethod::GET, path, :api_v1) execute_request(new_request) end |
#participant_projects(login, options: {}) ⇒ Object
12 13 14 15 16 17 18 19 20 21 22 |
# File 'lib/school21/api/participants_api.rb', line 12 def participant_projects(login, options: {}) path = "/participants/#{login}/projects" = { limit: 10, offset: 0 }.merge() new_request = authenticated_request(HttpMethod::GET, path, :api_v1) .each do |key, value| new_request.query_param(new_parameter(value, key:)) end execute_request(new_request) end |