1
0
Fork 0
find-us-lunch/app/controllers/lunches_controller.rb

22 lines
184 B
Ruby

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