2021-03-28 11:06:49 +02:00
|
|
|
import DiscourseURL from "discourse/lib/url";
|
2017-11-22 10:34:21 +01:00
|
|
|
|
|
|
|
export default {
|
2021-03-28 11:06:49 +02:00
|
|
|
name: "custom-wizard-edits",
|
2019-12-05 07:48:32 +01:00
|
|
|
initialize(container) {
|
2021-03-28 11:06:49 +02:00
|
|
|
const siteSettings = container.lookup("site-settings:main");
|
|
|
|
|
2021-04-12 07:10:02 +02:00
|
|
|
if (!siteSettings.custom_wizard_enabled) {return;}
|
2018-03-14 05:35:38 +01:00
|
|
|
|
|
|
|
const existing = DiscourseURL.routeTo;
|
2021-03-28 11:06:49 +02:00
|
|
|
DiscourseURL.routeTo = function (path, opts) {
|
|
|
|
if (path && path.indexOf("/w/") > -1) {
|
|
|
|
return (window.location = path);
|
2018-03-14 05:35:38 +01:00
|
|
|
}
|
|
|
|
return existing.apply(this, [path, opts]);
|
|
|
|
};
|
2021-03-28 11:06:49 +02:00
|
|
|
},
|
2017-11-22 10:34:21 +01:00
|
|
|
};
|