mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 03:05:25 +08:00
17 lines
456 B
JavaScript
17 lines
456 B
JavaScript
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
|
|
});
|
|
}
|
|
});
|