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

23 lines
185 B
Ruby

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