FEATURE: Watched Words: when posts contain words, do one of flag, require approval, censor, or block

This commit is contained in:
Neil Lalonde
2017-06-28 16:56:44 -04:00
parent 9d774a951a
commit 24cb950432
49 changed files with 1096 additions and 37 deletions

View File

@@ -0,0 +1,12 @@
export default {
"/admin/watched_words.json": {
"actions": ["block", "censor", "require_approval", "flag"],
"words": [
{id: 1, word: "liquorice", action: "block"},
{id: 2, word: "anise", action: "block"},
{id: 3, word: "pyramid", action: "flag"},
{id: 4, word: "scheme", action: "flag"},
{id: 5, word: "coupon", action: "require_approval"}
]
}
};