mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 09:42:07 +08:00
12 lines
426 B
Plaintext
12 lines
426 B
Plaintext
|
export default Discourse.Route.extend({
|
||
|
model(params) {
|
||
|
this.controllerFor('adminWatchedWordsAction').set('actionNameKey', params.action_id);
|
||
|
let filteredContent = this.controllerFor('adminWatchedWordsAction').get('filteredContent');
|
||
|
return Ember.Object.create({
|
||
|
nameKey: params.action_id,
|
||
|
name: I18n.t('admin.watched_words.actions.' + params.action_id),
|
||
|
words: filteredContent
|
||
|
});
|
||
|
}
|
||
|
});
|