mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-25 18:28:31 +08:00
This is a lift-and-shift of the admin e-mail logs, moving it out of the "Server setup & logs" page and into its own dedicated admin page.
10 lines
278 B
JavaScript
Vendored
10 lines
278 B
JavaScript
Vendored
import { i18n } from "discourse-i18n";
|
|
import AdminEmailLogs from "admin/routes/admin-email-logs";
|
|
|
|
export default class AdminEmailLogsSentRoute extends AdminEmailLogs {
|
|
status = "sent";
|
|
|
|
titleToken() {
|
|
return i18n("admin.config.email_logs.sub_pages.sent.title");
|
|
}
|
|
}
|