Class: Stattleship::Params::TeamGameLogsParams

Inherits:
GameTimeParams show all
Defined in:
lib/stattleship/params/team_game_logs_params.rb

Instance Attribute Summary collapse

Attributes inherited from GameTimeParams

#interval_type, #on, #season_id, #since, #status, #week

Attributes inherited from QueryParams

#page, #per_page, #season_id

Instance Method Summary collapse

Methods inherited from QueryParams

#query, #validate

Instance Attribute Details

#game_idObject

Returns the value of attribute game_id.



4
5
6
# File 'lib/stattleship/params/team_game_logs_params.rb', line 4

def game_id
  @game_id
end

#team_idObject

Returns the value of attribute team_id.



4
5
6
# File 'lib/stattleship/params/team_game_logs_params.rb', line 4

def team_id
  @team_id
end

Instance Method Details

#paramsObject



6
7
8
9
# File 'lib/stattleship/params/team_game_logs_params.rb', line 6

def params
  super.merge('team_id' => team_id,
              'game_id' => game_id)
end