13 lines
404 B
JavaScript
13 lines
404 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" }
|
|
]
|
|
}
|
|
};
|