Module: Model::Menu::ParentMenu

Extended by:
ActiveSupport::Concern
Included in:
Wechat::ParentMenu
Defined in:
app/models/wechat/model/menu/parent_menu.rb

Instance Method Summary collapse

Instance Method Details

#as_jsonObject



9
10
11
12
13
14
# File 'app/models/wechat/model/menu/parent_menu.rb', line 9

def as_json
  {
    name: name,
    sub_button: children.order(position: :desc).as_json
  }
end