mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 00:55:06 +08:00
14 lines
253 B
Plaintext
14 lines
253 B
Plaintext
|
export default Ember.Route.extend({
|
||
|
queryParams: {
|
||
|
q: { replace: true }
|
||
|
},
|
||
|
|
||
|
model(params) {
|
||
|
return this.store.find('site-text', { q: params.q });
|
||
|
},
|
||
|
|
||
|
setupController(controller, model) {
|
||
|
controller.set('siteTexts', model);
|
||
|
}
|
||
|
});
|