23 lines
184 B
Ruby
23 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
|