mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 10:34:17 +00:00
14 lines
507 B
JavaScript
Executable File
14 lines
507 B
JavaScript
Executable File
export default {
|
|
name: "Session",
|
|
collection: "sessions",
|
|
schema: {
|
|
session_uuid: { type: String, required: true },
|
|
token: { type: String, required: true },
|
|
username: { type: String, required: true },
|
|
user_id: { type: String, required: true },
|
|
date: { type: Number, default: 0 },
|
|
location: { type: String, default: "Unknown" },
|
|
ip_address: { type: String, default: "Unknown" },
|
|
client: { type: String, default: "Unknown" },
|
|
}
|
|
} |