mirror of
https://github.com/discourse/discourse.git
synced 2024-12-01 14:45:29 +08:00
eab560fe2a
Co-authored-by: Mark VanLandingham <markvanlan@gmail.com> Co-authored-by: Robin Ward <robin.ward@gmail.com> Co-authored-by: Mark VanLandingham <markvanlan@gmail.com>
21 lines
578 B
JavaScript
21 lines
578 B
JavaScript
import I18n from "I18n";
|
|
import EmberObject from "@ember/object";
|
|
import DiscourseRoute from "discourse/routes/discourse";
|
|
|
|
export default DiscourseRoute.extend({
|
|
model(params) {
|
|
this.controllerFor("adminWatchedWordsAction").set(
|
|
"actionNameKey",
|
|
params.action_id
|
|
);
|
|
let filteredContent = this.controllerFor("adminWatchedWordsAction").get(
|
|
"filteredContent"
|
|
);
|
|
return EmberObject.create({
|
|
nameKey: params.action_id,
|
|
name: I18n.t("admin.watched_words.actions." + params.action_id),
|
|
words: filteredContent
|
|
});
|
|
}
|
|
});
|