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

25 lines
185 B
Ruby

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