1
0
Fork 0

Update documentation references

Dieser Commit ist enthalten in:
Angus McLeod 2022-08-29 11:38:35 +02:00
Ursprung f8d5e9296d
Commit 66808dba08
6 geänderte Dateien mit 14 neuen und 15 gelöschten Zeilen

Datei anzeigen

@ -10,17 +10,16 @@ If you're not sure how to install a plugin in Discourse, please follow the [plug
## Documentation ## 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 Administration](https://plugins.discourse.pavilion.tech/t/wizard-administration)
- [Wizard Settings](https://thepavilion.io/t/wizard-settings/2807/2) - [Wizard Settings](https://plugins.discourse.pavilion.tech/t/wizard-settings)
- [Step Settings](https://thepavilion.io/t/step-settings/2808/2) - [Step Settings](https://plugins.discourse.pavilion.tech/t/step-settings)
- [Field Settings](https://thepavilion.io/t/field-settings/2809/2) - [Field Settings](https://plugins.discourse.pavilion.tech/t/field-settings)
- [Conditional Settings](https://thepavilion.io/t/conditional-settings/2811/2) - [Conditional Settings](https://plugins.discourse.pavilion.tech/t/conditional-settings)
- [Field Interpolation](https://thepavilion.io/t/field-interpolation/2830) - [Field Interpolation](https://plugins.discourse.pavilion.tech/t/field-interpolation)
- [Wizard Examples and Templates](https://thepavilion.io/t/wizard-examples-and-templates/3192) - [Wizard Examples and Templates](https://plugins.discourse.pavilion.tech/t/wizard-examples-and-templates)
## Support ## Support
- [Request a feature](https://thepavilion.io/w/feature-request) - [Report a bug](https://plugins.discourse.pavilion.tech/w/bug-report)
- [Report a bug](https://thepavilion.io/w/bug-report)

Datei anzeigen

@ -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") @discourseComputed("action.type")
messageKey(type) { messageKey(type) {

Datei anzeigen

@ -28,7 +28,7 @@ export default Component.extend(UndoChanges, {
isComposerPreview: equal("field.type", "composer_preview"), isComposerPreview: equal("field.type", "composer_preview"),
categoryPropertyTypes: selectKitContent(["id", "slug"]), categoryPropertyTypes: selectKitContent(["id", "slug"]),
showAdvanced: alias("field.type"), showAdvanced: alias("field.type"),
messageUrl: "https://thepavilion.io/t/2809", messageUrl: "https://plugins.discourse.pavilion.tech/t/field-settings",
@discourseComputed("field.type") @discourseComputed("field.type")
validations(type) { validations(type) {

Datei anzeigen

@ -4,7 +4,7 @@ import CustomWizardCustomField from "../models/custom-wizard-custom-field";
export default Controller.extend({ export default Controller.extend({
messageKey: "create", messageKey: "create",
fieldKeys: ["klass", "type", "name", "serializers"], fieldKeys: ["klass", "type", "name", "serializers"],
documentationUrl: "https://thepavilion.io/t/3572", documentationUrl: "https://plugins.discourse.pavilion.tech/t/custom-fields",
actions: { actions: {
addField() { addField() {

Datei anzeigen

@ -7,7 +7,7 @@ import I18n from "I18n";
import { underscore } from "@ember/string"; import { underscore } from "@ember/string";
export default Controller.extend({ export default Controller.extend({
messageUrl: "https://thepavilion.io/t/3652", messageUrl: "https://plugins.discourse.pavilion.tech/t/wizard-manager",
messageKey: "info", messageKey: "info",
messageIcon: "info-circle", messageIcon: "info-circle",
messageClass: "info", messageClass: "info",

Datei anzeigen

@ -21,5 +21,5 @@ export default Controller.extend({
return key; return key;
}, },
messageUrl: "https://thepavilion.io/c/knowledge/discourse/custom-wizard", messageUrl: "https://plugins.discourse.pavilion.tech/c/discourse-custom-wizard/documentation",
}); });