Para.components.draw do # Create a components section in the menu with a :menu identifier # You can translate the section title at: components.section.menu # # section :menu do # # Creating crud components can be done the following way # # # component :pages, :crud # component :members, :crud, model_type: 'User' # component :news, :crud, model_type: 'Page', namespaced: true # # Creating a component allowing you to edit a single resource is done # # with the `singleton_resource` component, the following way # # # component :home, :singleton_resource, model_type: 'HomePage' # end end