Class: FjordBootCamp::Resources::TraineeProgresses
- Defined in:
- lib/fjord_boot_camp/resources/trainee_progresses.rb
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
-
#list(week_start: nil, company_id: nil) ⇒ Object
研修生の週次進捗を取得.
Methods inherited from Base
Constructor Details
This class inherits a constructor from FjordBootCamp::Resources::Base
Instance Method Details
#list(week_start: nil, company_id: nil) ⇒ Object
研修生の週次進捗を取得
11 12 13 14 15 16 |
# File 'lib/fjord_boot_camp/resources/trainee_progresses.rb', line 11 def list(week_start: nil, company_id: nil) params = {} params[:week_start] = week_start if week_start params[:company_id] = company_id if company_id get('/api/trainee_progresses', params) end |