1
0
mirror of https://github.com/ragestudio/comty.git synced 2025-06-22 17:04:17 +00:00
2024-03-06 19:43:09 +00:00

13 lines
348 B
JavaScript

export default {
name: "OperationLog",
collection: "operation_logs",
schema: {
type: { type: String, required: true },
user_id: { type: String },
comments: { type: Array, default: [] },
date: { type: Date, required: true },
ip_address: { type: String },
client: { type: String },
}
}