Begin adding edit functionality

This commit is contained in:
Andrew Tomaka 2013-08-05 01:07:11 -04:00
parent 89cfba504c
commit 71b047be48
5 changed files with 24 additions and 1 deletions

View file

@ -6,4 +6,8 @@ class WorkoutsController < ApplicationController
def show
@workout = Workout.find(params[:id])
end
def edit
@workout = Workout.find(params[:id])
end
end