5 lines
99 B
Ruby
5 lines
99 B
Ruby
class WorkoutsController < ApplicationController
|
|
def index
|
|
@workouts = Workout.all
|
|
end
|
|
end
|