mirror of
https://ghfast.top/https://github.com/discourse/docker_manager.git
synced 2026-05-20 23:44:05 +08:00
This PR will rename the route "`/admin/upgrade`" to "`/admin/update`" and it will add a redirect for the old route. Follow-up to the PR: https://github.com/discourse/docker_manager/pull/208
10 lines
205 B
JavaScript
10 lines
205 B
JavaScript
export default {
|
|
resource: "admin",
|
|
|
|
map() {
|
|
this.route("update", { resetNamespace: true }, function () {
|
|
this.route("processes");
|
|
this.route("show", { path: "/:id" });
|
|
});
|
|
},
|
|
};
|