Class: Decidim::Blogs::Admin::UpdatePost
- Inherits:
-
Command
- Object
- Command
- Decidim::Blogs::Admin::UpdatePost
- Defined in:
- decidim-blogs/app/commands/decidim/blogs/admin/update_post.rb
Overview
This command is executed when the user changes a Blog from the admin panel.
Instance Method Summary collapse
-
#call ⇒ Object
Updates the blog if valid.
-
#initialize(form, post, user) ⇒ UpdatePost
constructor
Initializes a UpdateBlog Command.
Constructor Details
#initialize(form, post, user) ⇒ UpdatePost
Initializes a UpdateBlog Command.
form - The form from which to get the data. blog - The current instance of the page to be updated.
13 14 15 16 17 |
# File 'decidim-blogs/app/commands/decidim/blogs/admin/update_post.rb', line 13 def initialize(form, post, user) @form = form @post = post @user = user end |
Instance Method Details
#call ⇒ Object
Updates the blog if valid.
Broadcasts :ok if successful, :invalid otherwise.
22 23 24 25 26 27 28 29 30 |
# File 'decidim-blogs/app/commands/decidim/blogs/admin/update_post.rb', line 22 def call return broadcast(:invalid) if form.invalid? transaction do update_post! end broadcast(:ok, post) end |