mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-24 23:20:39 +08:00
7 lines
171 B
JavaScript
Vendored
7 lines
171 B
JavaScript
Vendored
import Route from "@ember/routing/route";
|
|
|
|
export default class AdminCustomizeEmailStyleRoute extends Route {
|
|
model() {
|
|
return this.store.find("email-style");
|
|
}
|
|
}
|