Skip to content

Commit

Permalink
fix: command initialized error
Browse files Browse the repository at this point in the history
  • Loading branch information
ayuki-joto committed Aug 15, 2023
1 parent d239c03 commit 07b46e5
Show file tree
Hide file tree
Showing 16 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion app/commands/decidim/accountability/destroy_all_results.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module Decidim
module Accountability
# A command with all the business logic when destroys all proposals.
class DestroyAllResults < Rectify::Command
class DestroyAllResults < Decidim::Command
# Public: Initializes the command.
#
# organization - The organization to destroy all results.
Expand Down
2 changes: 1 addition & 1 deletion app/commands/decidim/areas/destroy_all_areas.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module Decidim
module Areas
# A command with all the business logic when destroys all areas.
class DestroyAllAreas < Rectify::Command
class DestroyAllAreas < Decidim::Command
# Public: Initializes the command.
#
# organization - The organization to destroy all areas.
Expand Down
2 changes: 1 addition & 1 deletion app/commands/decidim/assemblies/destroy_all_assemblies.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module Decidim
module Assemblies
# A command with all the business logic when destroys all assemblies.
class DestroyAllAssemblies < Rectify::Command
class DestroyAllAssemblies < Decidim::Command
# Public: Initializes the command.
#
# organization - The organization to destroy all assemblies.
Expand Down
2 changes: 1 addition & 1 deletion app/commands/decidim/blogs/destroy_all_posts.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module Decidim
module Blogs
# A command with all the business logic when destroys all posts.
class DestroyAllPosts < Rectify::Command
class DestroyAllPosts < Decidim::Command
# Public: Initializes the command.
#
# organization - The organization to destroy all posts.
Expand Down
2 changes: 1 addition & 1 deletion app/commands/decidim/budgets/destroy_all_budgets.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module Decidim
module Budgets
# A command with all the business logic when destroys all budgets.
class DestroyAllBudgets < Rectify::Command
class DestroyAllBudgets < Decidim::Command
# Public: Initializes the command.
#
# organization - The organization to destroy all budgets.
Expand Down
2 changes: 1 addition & 1 deletion app/commands/decidim/comments/destroy_all_comments.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module Decidim
module Comments
# A command with all the business logic to destroy a comment
class DestroyAllComments < Rectify::Command
class DestroyAllComments < Decidim::Command
# Public: Initializes the command.
#
# organization - The organization to destroy all comments.
Expand Down
2 changes: 1 addition & 1 deletion app/commands/decidim/debates/destroy_all_debates.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module Decidim
module Debates
# A command with all the business logic when destroys all debates.
class DestroyAllDebates < Rectify::Command
class DestroyAllDebates < Decidim::Command
# Public: Initializes the command.
#
# organization - The organization to destroy all debates.
Expand Down
2 changes: 1 addition & 1 deletion app/commands/decidim/destroy_all_attachments.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module Decidim
# A command with all the business logic when destroys all proposals.
class DestroyAllAttachments < Rectify::Command
class DestroyAllAttachments < Decidim::Command
# Public: Initializes the command.
#
# organization - The organization to destroy all results.
Expand Down
2 changes: 1 addition & 1 deletion app/commands/decidim/gamifications/destroy_all_badges.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module Decidim
module Gamifications
# A command with all the business logic when destroys all meetings.
class DestroyAllBadges < Rectify::Command
class DestroyAllBadges < Decidim::Command
# Public: Initializes the command.
#
# organization - The organization to destroy all meetings.
Expand Down
2 changes: 1 addition & 1 deletion app/commands/decidim/meetings/destroy_all_meetings.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module Decidim
module Meetings
# A command with all the business logic when destroys all meetings.
class DestroyAllMeetings < Rectify::Command
class DestroyAllMeetings < Decidim::Command
# Public: Initializes the command.
#
# organization - The organization to destroy all meetings.
Expand Down
2 changes: 1 addition & 1 deletion app/commands/decidim/messaging/destroy_all_messages.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module Decidim
module Messaging
# A command with all the business logic when destroys all meetings.
class DestroyAllMessages < Rectify::Command
class DestroyAllMessages < Decidim::Command
# Executes the command. Broadcasts these events:
#
# - :ok when everything is valid and the message is deleted.
Expand Down
2 changes: 1 addition & 1 deletion app/commands/decidim/organizations/destroy_organization.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module Decidim
module Organizations
# A command with all the business logic when destroys organization.
class DestroyOrganization < Rectify::Command
class DestroyOrganization < Decidim::Command
# Public: Initializes the command.
#
# organization - The organization to destroy.
Expand Down
2 changes: 1 addition & 1 deletion app/commands/decidim/pages/destroy_all_pages.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module Decidim
module Pages
# A command with all the business logic when destroys all pages.
class DestroyAllPages < Rectify::Command
class DestroyAllPages < Decidim::Command
# Public: Initializes the command.
#
# organization - The organization to destroy all pages.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module Decidim
module ParticipatoryProcesses
# A command with all the business logic when destroys all participatory_processes.
class DestroyAllParticipatoryProcesses < Rectify::Command
class DestroyAllParticipatoryProcesses < Decidim::Command
# Public: Initializes the command.
#
# organization - The organization to destroy all participatory_processes.
Expand Down
2 changes: 1 addition & 1 deletion app/commands/decidim/proposals/destroy_all_proposals.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module Decidim
module Proposals
# A command with all the business logic when destroys all proposals.
class DestroyAllProposals < Rectify::Command
class DestroyAllProposals < Decidim::Command
# Public: Initializes the command.
#
# organization - The organization to destroy all proposals.
Expand Down
2 changes: 1 addition & 1 deletion app/commands/decidim/surveys/destroy_all_surveys.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module Decidim
module Surveys
# A command with all the business logic when destroys all surveys.
class DestroyAllSurveys < Rectify::Command
class DestroyAllSurveys < Decidim::Command
# Public: Initializes the command.
#
# organization - The organization to destroy all surveys.
Expand Down

0 comments on commit 07b46e5

Please sign in to comment.