2016-11-29 13:07:53 -05:00
|
|
|
export default function () {
|
|
|
|
this.route("admin", { resetNamespace: true }, function () {
|
2019-04-01 06:39:49 -04:00
|
|
|
this.route("dashboard", { path: "/" }, function () {
|
2018-07-26 14:59:28 -04:00
|
|
|
this.route("general", { path: "/" });
|
2019-04-01 06:39:49 -04:00
|
|
|
this.route("admin.dashboardModeration", {
|
2018-07-26 14:59:28 -04:00
|
|
|
path: "/dashboard/moderation",
|
|
|
|
resetNamespace: true,
|
|
|
|
});
|
2019-04-01 06:39:49 -04:00
|
|
|
this.route("admin.dashboardSecurity", {
|
2018-12-14 07:47:59 -05:00
|
|
|
path: "/dashboard/security",
|
|
|
|
resetNamespace: true,
|
|
|
|
});
|
2019-04-01 06:39:49 -04:00
|
|
|
this.route("admin.dashboardReports", {
|
2018-12-19 08:44:43 -05:00
|
|
|
path: "/dashboard/reports",
|
|
|
|
resetNamespace: true,
|
|
|
|
});
|
2018-07-19 14:33:11 -04:00
|
|
|
});
|
|
|
|
|
2016-11-02 13:38:54 -04:00
|
|
|
this.route(
|
|
|
|
"adminSiteSettings",
|
|
|
|
{ path: "/site_settings", resetNamespace: true },
|
|
|
|
function () {
|
|
|
|
this.route("adminSiteSettingsCategory", {
|
|
|
|
path: "category/:category_id",
|
|
|
|
resetNamespace: true,
|
2018-06-15 11:03:24 -04:00
|
|
|
});
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2013-06-03 16:12:24 -04:00
|
|
|
this.route(
|
2016-11-02 13:38:54 -04:00
|
|
|
"adminEmail",
|
|
|
|
{ path: "/email", resetNamespace: true },
|
2017-04-12 10:52:52 -04:00
|
|
|
function () {
|
2014-02-14 18:50:08 -05:00
|
|
|
this.route("sent");
|
2014-02-14 13:06:21 -05:00
|
|
|
this.route("skipped");
|
2016-05-02 17:15:32 -04:00
|
|
|
this.route("bounced");
|
2016-01-18 18:57:55 -05:00
|
|
|
this.route("received");
|
|
|
|
this.route("rejected");
|
2013-06-03 16:12:24 -04:00
|
|
|
this.route("previewDigest", { path: "/preview-digest" });
|
2018-11-28 18:03:50 -05:00
|
|
|
this.route("advancedTest", { path: "/advanced-test" });
|
2018-06-15 11:03:24 -04:00
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2016-11-02 13:38:54 -04:00
|
|
|
this.route(
|
2017-04-12 10:52:52 -04:00
|
|
|
"adminCustomize",
|
2016-11-02 13:38:54 -04:00
|
|
|
{ path: "/customize", resetNamespace: true },
|
|
|
|
function () {
|
2017-04-12 10:52:52 -04:00
|
|
|
this.route("colors", function () {
|
|
|
|
this.route("show", { path: "/:scheme_id" });
|
2018-06-15 11:03:24 -04:00
|
|
|
});
|
|
|
|
|
2016-11-02 13:38:54 -04:00
|
|
|
this.route(
|
2017-04-12 10:52:52 -04:00
|
|
|
"adminCustomizeThemes",
|
|
|
|
{ path: "themes", resetNamespace: true },
|
2016-11-02 13:38:54 -04:00
|
|
|
function () {
|
2017-04-12 10:52:52 -04:00
|
|
|
this.route("show", { path: "/:theme_id" });
|
|
|
|
this.route("edit", { path: "/:theme_id/:target/:field_name/edit" });
|
2018-06-15 11:03:24 -04:00
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2016-09-19 04:43:06 -04:00
|
|
|
this.route(
|
2016-11-02 13:38:54 -04:00
|
|
|
"adminSiteText",
|
|
|
|
{ path: "/site_texts", resetNamespace: true },
|
|
|
|
function () {
|
2015-11-12 16:08:19 -05:00
|
|
|
this.route("edit", { path: "/:id" });
|
2018-06-15 11:03:24 -04:00
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2016-11-02 13:38:54 -04:00
|
|
|
this.route("adminUserFields", {
|
|
|
|
path: "/user_fields",
|
|
|
|
resetNamespace: true,
|
2018-06-15 11:03:24 -04:00
|
|
|
});
|
2016-11-02 13:38:54 -04:00
|
|
|
this.route("adminEmojis", { path: "/emojis", resetNamespace: true });
|
|
|
|
this.route("adminPermalinks", {
|
|
|
|
path: "/permalinks",
|
|
|
|
resetNamespace: true,
|
2018-06-15 11:03:24 -04:00
|
|
|
});
|
2016-11-02 13:38:54 -04:00
|
|
|
this.route("adminEmbedding", {
|
|
|
|
path: "/embedding",
|
|
|
|
resetNamespace: true,
|
2018-06-15 11:03:24 -04:00
|
|
|
});
|
2013-08-15 10:48:30 -04:00
|
|
|
this.route(
|
2016-11-02 13:38:54 -04:00
|
|
|
"adminCustomizeEmailTemplates",
|
|
|
|
{ path: "/email_templates", resetNamespace: true },
|
2017-12-19 21:41:31 -05:00
|
|
|
function () {
|
2015-11-12 16:08:19 -05:00
|
|
|
this.route("edit", { path: "/:id" });
|
2018-06-15 11:03:24 -04:00
|
|
|
}
|
|
|
|
);
|
2019-07-15 13:47:44 -04:00
|
|
|
this.route("adminCustomizeRobotsTxt", {
|
|
|
|
path: "/robots",
|
|
|
|
resetNamespace: true,
|
|
|
|
});
|
2019-07-30 15:05:08 -04:00
|
|
|
this.route(
|
|
|
|
"adminCustomizeEmailStyle",
|
|
|
|
{ path: "/email_style", resetNamespace: true },
|
|
|
|
function () {
|
|
|
|
this.route("edit", { path: "/:field_name" });
|
|
|
|
}
|
|
|
|
);
|
2023-02-08 14:21:39 -05:00
|
|
|
this.route(
|
|
|
|
"adminCustomizeFormTemplates",
|
|
|
|
{ path: "/form-templates", resetNamespace: true },
|
|
|
|
function () {
|
|
|
|
this.route("new", { path: "/new" });
|
|
|
|
this.route("edit", { path: "/:id" });
|
|
|
|
}
|
|
|
|
);
|
2021-04-01 02:14:17 -04:00
|
|
|
this.route(
|
|
|
|
"adminWatchedWords",
|
|
|
|
{ path: "/watched_words", resetNamespace: true },
|
|
|
|
function () {
|
|
|
|
this.route("index", { path: "/" });
|
|
|
|
this.route("action", { path: "/action/:action_id" });
|
|
|
|
}
|
|
|
|
);
|
2018-06-15 11:03:24 -04:00
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2016-11-02 13:38:54 -04:00
|
|
|
this.route("adminApi", { path: "/api", resetNamespace: true }, function () {
|
2019-11-05 09:10:23 -05:00
|
|
|
this.route(
|
|
|
|
"adminApiKeys",
|
|
|
|
{ path: "/keys", resetNamespace: true },
|
|
|
|
function () {
|
|
|
|
this.route("show", { path: "/:api_key_id" });
|
|
|
|
this.route("new", { path: "/new" });
|
|
|
|
}
|
|
|
|
);
|
2018-06-15 11:03:24 -04:00
|
|
|
|
2016-11-02 13:38:54 -04:00
|
|
|
this.route(
|
|
|
|
"adminWebHooks",
|
|
|
|
{ path: "/web_hooks", resetNamespace: true },
|
|
|
|
function () {
|
|
|
|
this.route("show", { path: "/:web_hook_id" });
|
2022-12-12 19:53:08 -05:00
|
|
|
this.route("edit", { path: "/:web_hook_id/edit" });
|
2016-11-02 13:38:54 -04:00
|
|
|
}
|
|
|
|
);
|
2013-11-13 14:02:47 -05:00
|
|
|
});
|
2013-04-04 12:59:44 -04:00
|
|
|
|
2016-11-02 13:38:54 -04:00
|
|
|
this.route(
|
|
|
|
"admin.backups",
|
|
|
|
{ path: "/backups", resetNamespace: true },
|
|
|
|
function () {
|
2014-02-14 13:06:21 -05:00
|
|
|
this.route("logs");
|
2018-06-15 11:03:24 -04:00
|
|
|
}
|
2016-01-18 18:57:55 -05:00
|
|
|
);
|
2018-06-15 11:03:24 -04:00
|
|
|
|
2018-06-18 06:31:56 -04:00
|
|
|
this.route(
|
|
|
|
"adminReports",
|
|
|
|
{ path: "/reports", resetNamespace: true },
|
|
|
|
function () {
|
|
|
|
this.route("show", { path: ":type" });
|
|
|
|
}
|
|
|
|
);
|
2013-06-03 16:12:24 -04:00
|
|
|
|
2016-11-02 13:38:54 -04:00
|
|
|
this.route(
|
|
|
|
"adminLogs",
|
|
|
|
{ path: "/logs", resetNamespace: true },
|
|
|
|
function () {
|
|
|
|
this.route("staffActionLogs", { path: "/staff_action_logs" });
|
|
|
|
this.route("screenedEmails", { path: "/screened_emails" });
|
|
|
|
this.route("screenedIpAddresses", { path: "/screened_ip_addresses" });
|
2015-11-12 16:08:19 -05:00
|
|
|
this.route("screenedUrls", { path: "/screened_urls" });
|
2016-11-02 13:38:54 -04:00
|
|
|
this.route(
|
|
|
|
"adminSearchLogs",
|
|
|
|
{ path: "/search_logs", resetNamespace: true },
|
|
|
|
function () {
|
|
|
|
this.route("index", { path: "/" });
|
2019-03-28 22:39:44 -04:00
|
|
|
this.route("term", { path: "/term" });
|
2018-06-15 11:03:24 -04:00
|
|
|
}
|
2014-02-12 23:34:57 -05:00
|
|
|
);
|
2016-11-02 13:38:54 -04:00
|
|
|
}
|
|
|
|
);
|
2018-06-15 11:03:24 -04:00
|
|
|
|
2016-11-02 13:38:54 -04:00
|
|
|
this.route(
|
|
|
|
"adminUsers",
|
|
|
|
{ path: "/users", resetNamespace: true },
|
2017-09-06 10:21:07 -04:00
|
|
|
function () {
|
|
|
|
this.route(
|
2018-06-15 11:03:24 -04:00
|
|
|
"adminUser",
|
2017-09-06 10:21:07 -04:00
|
|
|
{ path: "/:user_id/:username", resetNamespace: true },
|
2016-11-02 13:38:54 -04:00
|
|
|
function () {
|
2013-10-21 14:49:51 -04:00
|
|
|
this.route("badges");
|
2017-09-06 10:21:07 -04:00
|
|
|
this.route("tl3Requirements", { path: "/tl3_requirements" });
|
2013-02-22 15:41:12 -05:00
|
|
|
}
|
|
|
|
);
|
2018-06-15 11:03:24 -04:00
|
|
|
|
2016-11-02 13:38:54 -04:00
|
|
|
this.route(
|
|
|
|
"adminUsersList",
|
|
|
|
{ path: "/list", resetNamespace: true },
|
2017-12-19 21:41:31 -05:00
|
|
|
function () {
|
|
|
|
this.route("show", { path: "/:filter" });
|
2017-07-31 17:06:26 -04:00
|
|
|
}
|
2013-08-01 21:30:13 -04:00
|
|
|
);
|
|
|
|
}
|
2014-03-19 10:27:21 -04:00
|
|
|
);
|
2018-06-15 11:03:24 -04:00
|
|
|
|
2014-03-19 10:27:21 -04:00
|
|
|
this.route(
|
2016-11-02 13:38:54 -04:00
|
|
|
"adminBadges",
|
|
|
|
{ path: "/badges", resetNamespace: true },
|
|
|
|
function () {
|
2020-01-13 09:20:26 -05:00
|
|
|
this.route("award", { path: "/award/:badge_id" });
|
2014-10-17 14:27:40 -04:00
|
|
|
this.route("show", { path: "/:badge_id" });
|
|
|
|
}
|
|
|
|
);
|
2018-06-15 11:03:24 -04:00
|
|
|
|
2016-11-30 04:06:42 -05:00
|
|
|
this.route(
|
|
|
|
"adminPlugins",
|
|
|
|
{ path: "/plugins", resetNamespace: true },
|
|
|
|
function () {
|
|
|
|
this.route("index", { path: "/" });
|
|
|
|
}
|
|
|
|
);
|
2016-11-29 13:07:53 -05:00
|
|
|
});
|
2015-01-30 13:29:32 -05:00
|
|
|
}
|