Created
November 30, 2016 14:43
-
-
Save pareeohnos/0b0ab3c9b34ab8faa9b556a437f0b1b4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
resources "workouts", WorkoutController, only: [:index, :show] do | |
get "sensor_readings/:sensor_identifier", WorkoutController, :sensor_readings | |
end | |
workout_workout_path GET /workouts/:workout_id/sensor_readings/:sensor_identifier Inova.WorkoutController :sensor_readings | |
resources "/workouts", WorkoutController, only: [:index, :show] do | |
get "sensor_readings/:sensor_identifier", WorkoutController, :sensor_readings | |
end | |
workout_workout_path GET /workouts/:workout_id/sensor_readings/:sensor_identifier Inova.WorkoutController :sensor_readings | |
resources "workouts", WorkoutController, only: [:index, :show] do | |
get "/sensor_readings/:sensor_identifier", WorkoutController, :sensor_readings | |
end | |
workout_workout_path GET /workouts/:workout_id/sensor_readings/:sensor_identifier Inova.WorkoutController :sensor_readings | |
resources "/workouts", WorkoutController, only: [:index, :show] do | |
get "/sensor_readings/:sensor_identifier", WorkoutController, :sensor_readings | |
end | |
workout_workout_path GET /workouts/:workout_id/sensor_readings/:sensor_identifier Inova.WorkoutController :sensor_readings |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment