14 lines
262 B
Ruby
14 lines
262 B
Ruby
class Api::Restaurant::MenuItemAttributesController < Api::ApiController
|
|
|
|
#Description
|
|
# Pull the default menu details and also other available (active) menus
|
|
# Input Params - order_id
|
|
def index
|
|
@menu_attributes = MenuItemAttribute.all
|
|
end
|
|
|
|
|
|
|
|
|
|
end
|