2017-06-28 16:56:44 -04:00
|
|
|
export default {
|
2017-07-31 17:06:26 -04:00
|
|
|
"/admin/logs/watched_words.json": {
|
2018-06-15 11:03:24 -04:00
|
|
|
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" },
|
2019-07-14 22:55:50 -04:00
|
|
|
{ id: 5, word: "coupon", action: "require_approval" },
|
2019-07-15 04:38:54 -04:00
|
|
|
{ id: 6, word: '<img src="x">', action: "block" }
|
2019-08-02 05:53:03 -04:00
|
|
|
],
|
|
|
|
compiled_regular_expressions: {}
|
2017-06-28 16:56:44 -04:00
|
|
|
}
|
|
|
|
};
|