tiss2go/app/controllers/projects_controller.rb
2020-04-20 18:21:19 +02:00

25 lines
187 B
Ruby

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