Class: Decidim::Pages::CreatePage
- Inherits:
-
Command
- Object
- Command
- Decidim::Pages::CreatePage
- Defined in:
- app/commands/decidim/pages/create_page.rb
Overview
Command that gets called whenever a component’s page has to be created. It usually happens as a callback when the component itself is created.
Instance Method Summary collapse
- #call ⇒ Object
-
#initialize(component) ⇒ CreatePage
constructor
A new instance of CreatePage.
Constructor Details
#initialize(component) ⇒ CreatePage
Returns a new instance of CreatePage.
8 9 10 |
# File 'app/commands/decidim/pages/create_page.rb', line 8 def initialize(component) @component = component end |
Instance Method Details
#call ⇒ Object
12 13 14 15 16 |
# File 'app/commands/decidim/pages/create_page.rb', line 12 def call @page = Page.new(component: @component) @page.save ? broadcast(:ok) : broadcast(:invalid) end |