mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-17 08:50:15 +01:00
* feat: basic invite-user script * feat: add invite user functionality and registration validation middleware * fix: invite user fixes * refactor: consolidate direct model access to a central place of functions * style(Registration): add spinner to continue button * refactor: import ordrer * feat: improve invite user script and error handling * fix: merge conflict * refactor: remove `console.log` and use `logger` * fix: token operation and checkinvite issues * bring back comment and remove console log * fix: return invalid token when token is not found * fix: getInvite fix * refactor: Update Token.js to use async/await syntax for update and delete operations * feat: Refactor Token.js to use async/await syntax for createToken and findToken functions * refactor(inviteUser): define functions outside of module.exports * Update AuthService.js --------- Co-authored-by: Danny Avila <danny@librechat.ai>
30 lines
514 B
JavaScript
30 lines
514 B
JavaScript
const mongoose = require('mongoose');
|
|
const Schema = mongoose.Schema;
|
|
|
|
const tokenSchema = new Schema({
|
|
userId: {
|
|
type: Schema.Types.ObjectId,
|
|
required: true,
|
|
ref: 'user',
|
|
},
|
|
email: {
|
|
type: String,
|
|
},
|
|
token: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
createdAt: {
|
|
type: Date,
|
|
required: true,
|
|
default: Date.now,
|
|
},
|
|
expiresAt: {
|
|
type: Date,
|
|
required: true,
|
|
},
|
|
});
|
|
|
|
tokenSchema.index({ expiresAt: 1 }, { expireAfterSeconds: 0 });
|
|
|
|
module.exports = tokenSchema;
|