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