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.
19 lines
640 B
19 lines
640 B
// oauth2-authorization-code.js
|
|
// Copyright (C) 2022 DTP Technologies, LLC
|
|
// License: Apache-2.0
|
|
|
|
'use strict';
|
|
|
|
const mongoose = require('mongoose');
|
|
|
|
const Schema = mongoose.Schema;
|
|
|
|
const OAuth2AuthorizationCodeSchema = new Schema({
|
|
code: { type: String, required: true, index: 1 },
|
|
client: { type: Schema.ObjectId, required: true, index: 1, ref: 'OAuth2Client' },
|
|
redirectUri: { type: String, required: true },
|
|
user: { type: Schema.ObjectId, required: true, index: 1, ref: 'User' },
|
|
scopes: { type: [String], required: true },
|
|
});
|
|
|
|
module.exports = mongoose.model('OAuth2AuthorizationCode', OAuth2AuthorizationCodeSchema);
|