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

23 lines
183 B
Ruby

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