diff options
Diffstat (limited to 'app/controllers')
| -rw-r--r-- | app/controllers/menu_items_controller.rb | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/app/controllers/menu_items_controller.rb b/app/controllers/menu_items_controller.rb new file mode 100644 index 0000000..1ac3ddb --- /dev/null +++ b/app/controllers/menu_items_controller.rb | |||
| @@ -0,0 +1,27 @@ | |||
| 1 | class MenuItemsController < ApplicationController | ||
| 2 | |||
| 3 | layout 'admin' | ||
| 4 | |||
| 5 | def index | ||
| 6 | @menu_items = MenuItem.all | ||
| 7 | end | ||
| 8 | |||
| 9 | def show | ||
| 10 | end | ||
| 11 | |||
| 12 | def new | ||
| 13 | end | ||
| 14 | |||
| 15 | def create | ||
| 16 | end | ||
| 17 | |||
| 18 | def edit | ||
| 19 | end | ||
| 20 | |||
| 21 | def update | ||
| 22 | end | ||
| 23 | |||
| 24 | def delete | ||
| 25 | end | ||
| 26 | |||
| 27 | end | ||
