mirror of
https://github.com/discourse/discourse.git
synced 2025-02-05 19:11:13 +00:00
73f42e110a
In 61c1d35f17468b3666c966839da911d9f96dad19 I added a PluginOutlet to AdminPluginConfigPage. This was intended to be used as a way to render actions buttons inside the header of a plugin that has a custom admin UI page. This worked, but since the outlet was generically named, as soon as one plugin used it the button would show on all plugins. This fixes the immediate issue by naming the outlet based on the plugin, then having each plugin specify their own outlet to render into. There may be a nicer way to do this, but for now this stops the bleeding.