mirror of
https://github.com/wassname/talk.git
synced 2026-07-05 07:22:57 +08:00
18 lines
289 B
JavaScript
18 lines
289 B
JavaScript
const {readFileSync} = require('fs');
|
|
const path = require('path');
|
|
|
|
module.exports = {
|
|
tags: [
|
|
{
|
|
name: 'OFF_TOPIC',
|
|
permissions: {
|
|
public: true,
|
|
self: true,
|
|
roles: []
|
|
},
|
|
models: ['COMMENTS'],
|
|
created_at: new Date()
|
|
}
|
|
]
|
|
};
|