DEV: Rename all uses of PluginOutlet @args in core

The `args` argument is now deprecated. This commit uses a codemod (https://github.com/discourse/discourse-ember-codemods/tree/main/transforms/rename-plugin-outlet-args) to automatically rename all uses to `@outletArgs`.
This commit is contained in:
David Taylor
2023-01-31 12:58:31 +00:00
parent 84f6a8399d
commit 9e440dca33
86 changed files with 193 additions and 178 deletions
@@ -66,7 +66,7 @@
<PluginOutlet
@name="below-public-chat-channels"
@tagName=""
@args={{hash inSidebar=this.inSidebar}}
@outletArgs={{hash inSidebar=this.inSidebar}}
/>
{{#if this.showDirectMessageChannels}}
@@ -34,7 +34,7 @@
{{/if}}
<PluginOutlet
@name="after-chat-channel-username"
@args={{hash user=user}}
@outletArgs={{hash user=user}}
@tagName=""
@connectorTagName=""
/>