forked from forkcms/forkcms
-
Notifications
You must be signed in to change notification settings - Fork 3
55 simple bus #433
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
55 simple bus #433
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
b70a3eb
Convert media gallery delete command with messenger
12ea465
Update command config for media gallery delete
12d57bc
Convert media item upload command with messenger
67b8494
Convert save media group command with messenger
3586f11
Remove unused simple bus from media item subscriber
ca634e1
Convert re sequence metdia item listener with messenger
d50da52
Convert media item delete with messenger
85c0e0f
Convert media item update with messenger
941b4cc
Convert content block crud with messenger
099f754
Convert mailmotor commands with messenger
221e4f2
Convert media folder crud with messenger
bf4d511
Convert media gallery crud with messenger
9772ddb
Convert core update sequence with messenger
96e4c0b
Convert pages copy all with messenger
4339dbc
Remove simple bus
e0a9bd2
Remove unused argument
ee5c9ca
Fix typo
6c6ca81
Merge branch 'master' into 55-simple-bus
78dc50a
Make uuids work again
739c12b
Fix dbal exception
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
35 changes: 7 additions & 28 deletions
35
src/Backend/Modules/ContentBlocks/Resources/config/commands.yml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,32 +1,11 @@ | ||
| services: | ||
| content_blocks.handler.create_content_block: | ||
| class: Backend\Modules\ContentBlocks\Domain\ContentBlock\Command\CreateContentBlockHandler | ||
| _defaults: | ||
| autowire: true | ||
| autoconfigure: true | ||
| public: true | ||
| arguments: | ||
| - "@content_blocks.repository.content_block" | ||
| tags: | ||
| - { name: command_handler, handles: Backend\Modules\ContentBlocks\Domain\ContentBlock\Command\CreateContentBlock } | ||
|
|
||
| content_blocks.handler.update_content_block: | ||
| class: Backend\Modules\ContentBlocks\Domain\ContentBlock\Command\UpdateContentBlockHandler | ||
| public: true | ||
| arguments: | ||
| - "@content_blocks.repository.content_block" | ||
| tags: | ||
| - { name: command_handler, handles: Backend\Modules\ContentBlocks\Domain\ContentBlock\Command\UpdateContentBlock } | ||
|
|
||
| content_blocks.handler.delete_content_block: | ||
| class: Backend\Modules\ContentBlocks\Domain\ContentBlock\Command\DeleteContentBlockHandler | ||
| public: true | ||
| arguments: | ||
| - "@content_blocks.repository.content_block" | ||
| tags: | ||
| - { name: command_handler, handles: Backend\Modules\ContentBlocks\Domain\ContentBlock\Command\DeleteContentBlock } | ||
| Backend\Modules\ContentBlocks\Domain\ContentBlock\Command\CreateContentBlockHandler: | ||
| Backend\Modules\ContentBlocks\Domain\ContentBlock\Command\UpdateContentBlockHandler: | ||
| Backend\Modules\ContentBlocks\Domain\ContentBlock\Command\DeleteContentBlockHandler: | ||
|
|
||
| content_blocks.handler.copy_content_blocks_to_other_locale: | ||
| class: Backend\Modules\ContentBlocks\Domain\ContentBlock\Command\CopyContentBlocksToOtherLocaleHandler | ||
| public: true | ||
| arguments: | ||
| - "@content_blocks.repository.content_block" | ||
| tags: | ||
| - { name: command_handler, handles: Backend\Modules\ContentBlocks\Domain\ContentBlock\Command\CopyContentBlocksToOtherLocale } | ||
| Backend\Modules\ContentBlocks\Domain\ContentBlock\Command\CopyContentBlocksToOtherLocaleHandler: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 5 additions & 6 deletions
11
src/Backend/Modules/FormBuilder/Resources/config/commands.yml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,8 +1,7 @@ | ||
| services: | ||
| form.handler.copy_widgets_to_other_locale: | ||
| class: Backend\Modules\FormBuilder\Command\CopyFormWidgetsToOtherLocaleHandler | ||
| _defaults: | ||
| autowire: true | ||
| autoconfigure: true | ||
| public: true | ||
| arguments: | ||
| - "@database" | ||
| tags: | ||
| - { name: command_handler, handles: Backend\Modules\FormBuilder\Command\CopyFormWidgetsToOtherLocale } | ||
|
|
||
| Backend\Modules\FormBuilder\Command\CopyFormWidgetsToOtherLocaleHandler: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.