9 lines
158 B
Ruby
9 lines
158 B
Ruby
class WorkoutsController < ApplicationController
|
|
def index
|
|
@workouts = Workout.all
|
|
end
|
|
|
|
def show
|
|
@workout = Workout.find(params[:id])
|
|
end
|
|
end
|