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

23 lines
184 B
Ruby
Raw Normal View History

2014-11-06 13:52:28 -05:00
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