diff --git a/README.md b/README.md index 721b6432..0190f16e 100644 --- a/README.md +++ b/README.md @@ -10,16 +10,16 @@ If you're not sure how to install a plugin in Discourse, please follow the [plug ## Documentation -[Read the full documentation here](https://plugins.discourse.pavilion.tech/c/discourse-custom-wizard/documentation), or go directly to the relevant section +[Read the full documentation here](https://discourse.pluginmanager.org/c/discourse-custom-wizard/documentation), or go directly to the relevant section -- [Wizard Administration](https://plugins.discourse.pavilion.tech/t/wizard-administration) -- [Wizard Settings](https://plugins.discourse.pavilion.tech/t/wizard-settings) -- [Step Settings](https://plugins.discourse.pavilion.tech/t/step-settings) -- [Field Settings](https://plugins.discourse.pavilion.tech/t/field-settings) -- [Conditional Settings](https://plugins.discourse.pavilion.tech/t/conditional-settings) -- [Field Interpolation](https://plugins.discourse.pavilion.tech/t/field-interpolation) -- [Wizard Examples and Templates](https://plugins.discourse.pavilion.tech/t/wizard-examples-and-templates) +- [Wizard Administration](https://discourse.pluginmanager.org/t/wizard-administration) +- [Wizard Settings](https://discourse.pluginmanager.org/t/wizard-settings) +- [Step Settings](https://discourse.pluginmanager.org/t/step-settings) +- [Field Settings](https://discourse.pluginmanager.org/t/field-settings) +- [Conditional Settings](https://discourse.pluginmanager.org/t/conditional-settings) +- [Field Interpolation](https://discourse.pluginmanager.org/t/field-interpolation) +- [Wizard Examples and Templates](https://discourse.pluginmanager.org/t/wizard-examples-and-templates) ## Support -- [Report a bug](https://plugins.discourse.pavilion.tech/w/bug-report) +- [Report a bug](https://discourse.pluginmanager.org/w/bug-report) diff --git a/assets/javascripts/discourse/components/wizard-custom-action.js.es6 b/assets/javascripts/discourse/components/wizard-custom-action.js.es6 index a5aa06cd..34e48043 100644 --- a/assets/javascripts/discourse/components/wizard-custom-action.js.es6 +++ b/assets/javascripts/discourse/components/wizard-custom-action.js.es6 @@ -51,7 +51,7 @@ export default Component.extend(UndoChanges, { }; }), - messageUrl: "https://plugins.discourse.pavilion.tech/t/action-settings", + messageUrl: "https://discourse.pluginmanager.org/t/action-settings", @discourseComputed("action.type") messageKey(type) { diff --git a/assets/javascripts/discourse/components/wizard-custom-field.js.es6 b/assets/javascripts/discourse/components/wizard-custom-field.js.es6 index e792331d..31c8dc66 100644 --- a/assets/javascripts/discourse/components/wizard-custom-field.js.es6 +++ b/assets/javascripts/discourse/components/wizard-custom-field.js.es6 @@ -28,7 +28,7 @@ export default Component.extend(UndoChanges, { isComposerPreview: equal("field.type", "composer_preview"), categoryPropertyTypes: selectKitContent(["id", "slug"]), showAdvanced: alias("field.type"), - messageUrl: "https://plugins.discourse.pavilion.tech/t/field-settings", + messageUrl: "https://discourse.pluginmanager.org/t/field-settings", @discourseComputed("field.type") validations(type) { diff --git a/assets/javascripts/discourse/controllers/admin-wizards-custom-fields.js.es6 b/assets/javascripts/discourse/controllers/admin-wizards-custom-fields.js.es6 index 6d93ecd5..5d47d8d7 100644 --- a/assets/javascripts/discourse/controllers/admin-wizards-custom-fields.js.es6 +++ b/assets/javascripts/discourse/controllers/admin-wizards-custom-fields.js.es6 @@ -4,7 +4,7 @@ import CustomWizardCustomField from "../models/custom-wizard-custom-field"; export default Controller.extend({ messageKey: "create", fieldKeys: ["klass", "type", "name", "serializers"], - documentationUrl: "https://plugins.discourse.pavilion.tech/t/custom-fields", + documentationUrl: "https://discourse.pluginmanager.org/t/custom-fields", actions: { addField() { diff --git a/assets/javascripts/discourse/controllers/admin-wizards-manager.js.es6 b/assets/javascripts/discourse/controllers/admin-wizards-manager.js.es6 index a8c0bcee..67016bd7 100644 --- a/assets/javascripts/discourse/controllers/admin-wizards-manager.js.es6 +++ b/assets/javascripts/discourse/controllers/admin-wizards-manager.js.es6 @@ -7,7 +7,7 @@ import I18n from "I18n"; import { underscore } from "@ember/string"; export default Controller.extend({ - messageUrl: "https://plugins.discourse.pavilion.tech/t/wizard-manager", + messageUrl: "https://discourse.pluginmanager.org/t/wizard-manager", messageKey: "info", messageIcon: "info-circle", messageClass: "info", diff --git a/assets/javascripts/discourse/controllers/admin-wizards-wizard.js.es6 b/assets/javascripts/discourse/controllers/admin-wizards-wizard.js.es6 index fa98ae70..5178a1e1 100644 --- a/assets/javascripts/discourse/controllers/admin-wizards-wizard.js.es6 +++ b/assets/javascripts/discourse/controllers/admin-wizards-wizard.js.es6 @@ -22,5 +22,5 @@ export default Controller.extend({ }, messageUrl: - "https://plugins.discourse.pavilion.tech/c/discourse-custom-wizard/documentation", + "https://discourse.pluginmanager.org/c/discourse-custom-wizard/documentation", });