summaryrefslogtreecommitdiff
path: root/app/controllers/menu_items_controller.rb
blob: 1ac3ddbd064ee72ac8784f80f59e88a31da1540f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
class MenuItemsController < ApplicationController
  
  layout 'admin'
  
  def index
    @menu_items = MenuItem.all
  end

  def show
  end

  def new
  end

  def create
  end

  def edit
  end

  def update
  end

  def delete
  end

end