diff --git a/README.md b/README.md index 40618c6c..721b6432 100644 --- a/README.md +++ b/README.md @@ -10,17 +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://thepavilion.io/c/knowledge/discourse/custom-wizard/118), or go directly to the relevant section +[Read the full documentation here](https://plugins.discourse.pavilion.tech/c/discourse-custom-wizard/documentation), or go directly to the relevant section -- [Wizard Administration](https://thepavilion.io/t/wizard-administration/2818) -- [Wizard Settings](https://thepavilion.io/t/wizard-settings/2807/2) -- [Step Settings](https://thepavilion.io/t/step-settings/2808/2) -- [Field Settings](https://thepavilion.io/t/field-settings/2809/2) -- [Conditional Settings](https://thepavilion.io/t/conditional-settings/2811/2) -- [Field Interpolation](https://thepavilion.io/t/field-interpolation/2830) -- [Wizard Examples and Templates](https://thepavilion.io/t/wizard-examples-and-templates/3192) +- [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) ## Support -- [Request a feature](https://thepavilion.io/w/feature-request) -- [Report a bug](https://thepavilion.io/w/bug-report) +- [Report a bug](https://plugins.discourse.pavilion.tech/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 feb83754..a5aa06cd 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://thepavilion.io/t/2810", + messageUrl: "https://plugins.discourse.pavilion.tech/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 3bccad2a..e792331d 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://thepavilion.io/t/2809", + messageUrl: "https://plugins.discourse.pavilion.tech/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 404c6afd..6d93ecd5 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://thepavilion.io/t/3572", + documentationUrl: "https://plugins.discourse.pavilion.tech/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 4565820c..a8c0bcee 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://thepavilion.io/t/3652", + messageUrl: "https://plugins.discourse.pavilion.tech/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 ddd63337..b665b8d5 100644 --- a/assets/javascripts/discourse/controllers/admin-wizards-wizard.js.es6 +++ b/assets/javascripts/discourse/controllers/admin-wizards-wizard.js.es6 @@ -21,5 +21,5 @@ export default Controller.extend({ return key; }, - messageUrl: "https://thepavilion.io/c/knowledge/discourse/custom-wizard", + messageUrl: "https://plugins.discourse.pavilion.tech/c/discourse-custom-wizard/documentation", });