mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 05:29:17 -06:00
FIX: Correct router service call from some admin controllers (#22757)
72edb727
updated these to point to the router service, but the method name also needed to be changed from replaceRoute -> replaceWith
This commit is contained in:
parent
a5fa24d876
commit
21dad02503
@ -59,7 +59,7 @@ export default class AdminCustomizeColorsShowController extends Controller {
|
||||
);
|
||||
newColorScheme.save().then(() => {
|
||||
this.allColors.pushObject(newColorScheme);
|
||||
this.router.replaceRoute("adminCustomize.colors.show", newColorScheme);
|
||||
this.router.replaceWith("adminCustomize.colors.show", newColorScheme);
|
||||
});
|
||||
}
|
||||
|
||||
@ -80,7 +80,7 @@ export default class AdminCustomizeColorsShowController extends Controller {
|
||||
didConfirm: () => {
|
||||
return this.model.destroy().then(() => {
|
||||
this.allColors.removeObject(this.model);
|
||||
this.router.replaceRoute("adminCustomize.colors");
|
||||
this.router.replaceWith("adminCustomize.colors");
|
||||
});
|
||||
},
|
||||
});
|
||||
|
@ -38,7 +38,7 @@ export default class AdminCustomizeColorsController extends Controller {
|
||||
newColorScheme.save().then(() => {
|
||||
this.model.pushObject(newColorScheme);
|
||||
newColorScheme.set("savingStatus", null);
|
||||
this.router.replaceRoute("adminCustomize.colors.show", newColorScheme);
|
||||
this.router.replaceWith("adminCustomize.colors.show", newColorScheme);
|
||||
});
|
||||
}
|
||||
|
||||
|
@ -51,7 +51,7 @@ export default class AdminCustomizeThemesEditController extends Controller {
|
||||
|
||||
@action
|
||||
fieldAdded(target, name) {
|
||||
this.router.replaceRoute(
|
||||
this.router.replaceWith(
|
||||
this.editRouteName,
|
||||
this.get("model.id"),
|
||||
target,
|
||||
@ -68,7 +68,7 @@ export default class AdminCustomizeThemesEditController extends Controller {
|
||||
(f) => f.edited
|
||||
);
|
||||
|
||||
this.router.replaceRoute(
|
||||
this.router.replaceWith(
|
||||
this.editRouteName,
|
||||
this.get("model.id"),
|
||||
firstTarget.name,
|
||||
@ -80,6 +80,6 @@ export default class AdminCustomizeThemesEditController extends Controller {
|
||||
|
||||
@action
|
||||
goBack() {
|
||||
this.router.replaceRoute(this.showRouteName, this.model.id);
|
||||
this.router.replaceWith(this.showRouteName, this.model.id);
|
||||
}
|
||||
}
|
||||
|
@ -140,7 +140,7 @@ export default class AdminDashboardGeneralController extends Controller.extend(
|
||||
})
|
||||
.catch((e) => {
|
||||
this.exceptionController.set("thrown", e.jqXHR);
|
||||
this.router.replaceRoute("exception");
|
||||
this.router.replaceWith("exception");
|
||||
})
|
||||
.finally(() => this.set("isLoading", false));
|
||||
}
|
||||
|
@ -91,7 +91,7 @@ export default class AdminDashboardController extends Controller {
|
||||
})
|
||||
.catch((e) => {
|
||||
this.exceptionController.set("thrown", e.jqXHR);
|
||||
this.router.replaceRoute("exception");
|
||||
this.router.replaceWith("exception");
|
||||
})
|
||||
.finally(() => {
|
||||
this.set("isLoading", false);
|
||||
|
Loading…
Reference in New Issue
Block a user