mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 01:32:23 +08:00
15 lines
499 B
JavaScript
15 lines
499 B
JavaScript
export default {
|
|
"/admin/logs/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" },
|
|
{ id: 6, word: '<img src="x">', action: "block" }
|
|
],
|
|
compiled_regular_expressions: {}
|
|
}
|
|
};
|