mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 02:43:42 +08:00
10 lines
184 B
Plaintext
10 lines
184 B
Plaintext
|
export default Ember.Route.extend({
|
||
|
model() {
|
||
|
return this.store.find("email-style");
|
||
|
},
|
||
|
|
||
|
redirect() {
|
||
|
this.transitionTo("adminCustomizeEmailStyle.edit", "html");
|
||
|
}
|
||
|
});
|