Add show functionality
This commit is contained in:
parent
cab5cc436e
commit
53d689cd91
3 changed files with 17 additions and 0 deletions
|
@ -2,4 +2,8 @@ class WorkoutsController < ApplicationController
|
|||
def index
|
||||
@workouts = Workout.all
|
||||
end
|
||||
|
||||
def show
|
||||
@workout = Workout.find(params[:id])
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue