Continue developing log schema

This commit is contained in:
Tuan Dang
2022-12-18 17:19:09 -05:00
parent 9d41f753f4
commit 648e3e3bbf

View File

@@ -2,11 +2,11 @@ import { Schema, model, Types } from 'mongoose';
export interface ILog {
_id: Types.ObjectId;
user: Types.ObjectId;
user?: Types.ObjectId;
workspace: Types.ObjectId;
event: string;
source: string;
ipAddress: string;
ipAddress?: string;
}
// TODO: need a way to store payload info for each
@@ -14,6 +14,8 @@ export interface ILog {
// which secret is being ref etc.
// user logged in
const logSchema = new Schema<ILog>(
{
user: {
@@ -24,17 +26,25 @@ const logSchema = new Schema<ILog>(
type: Schema.Types.ObjectId,
ref: 'Workspace'
},
event: {
event: { // push, pull
type: String,
required: true
},
source: { // should this just be a payload attr?
payload: { // should this just be a payload attr?
numberOfSecrets: {
type: Number
},
environment: {
type: String
}
},
channel: {
type: String,
enum: ['web', 'cli', 'auto'],
required: true
},
ipAddress: { // store in bytes?
type: String,
required: true
type: String
}
}, {
timestamps: true