You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
670 B
23 lines
670 B
// client.js
|
|
// Copyright (C) 2024 DTP Technologies, LLC
|
|
// All Rights Reserved
|
|
|
|
'use strict';
|
|
|
|
import mongoose from 'mongoose';
|
|
const Schema = mongoose.Schema;
|
|
|
|
const MAX_HOURS_PER_WEEK = 7 * 24;
|
|
|
|
const ClientSchema = new Schema({
|
|
user: { type: Schema.ObjectId, required: true, index: 1, ref: 'User' },
|
|
name: { type: String, required: true },
|
|
description: { type: String },
|
|
hoursLimit: { type: Number, default: 0, max: MAX_HOURS_PER_WEEK, required: true },
|
|
weeklyTotals: {
|
|
timeWorked: { type: Number, default: 0, required: true },
|
|
billable: { type: Number, default: 0, required: true },
|
|
},
|
|
});
|
|
|
|
export default mongoose.model('Client', ClientSchema);
|