Class: Decidim::Challenges::Admin::PublishChallenge

Inherits:
Decidim::Command
  • Object
show all
Defined in:
app/commands/decidim/challenges/admin/publish_challenge.rb

Overview

A command that sets a challenge as published.

Instance Method Summary collapse

Constructor Details

#initialize(challenge, current_user) ⇒ PublishChallenge

Public: Initializes the command.

challenge - A Challenge that will be published current_user - the user performing the action



12
13
14
15
16
# File 'app/commands/decidim/challenges/admin/publish_challenge.rb', line 12

def initialize(challenge, current_user)
  super()
  @challenge = challenge
  @current_user = current_user
end

Instance Method Details

#callObject

Executes the command. Broadcasts these events:

  • :ok when everything is valid.

  • :invalid if the data wasn’t valid and we couldn’t proceed.

Returns nothing.



24
25
26
27
28
29
30
31
32
# File 'app/commands/decidim/challenges/admin/publish_challenge.rb', line 24

def call
  return broadcast(:invalid) if challenge.nil? || challenge.published?

  Decidim.traceability.perform_action!("publish", challenge, current_user, visibility: "all") do
    challenge.publish!
  end

  broadcast(:ok)
end