tiss2go/app/controllers/courses_controller.rb
2020-04-06 20:40:13 +02:00

23 lines
184 B
Ruby

class CoursesController < ApplicationController
def index
end
def show
end
def new
end
def edit
end
def create
end
def update
end
def destroy
end
end