mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-03 14:19:01 +02:00
087919a5f8
GitOrigin-RevId: ad9f3e81da37bd932822f13db441ce8afc342eea
16 lines
338 B
JavaScript
16 lines
338 B
JavaScript
const mongoose = require('../infrastructure/Mongoose')
|
|
const { Schema } = mongoose
|
|
|
|
const SamlCacheSchema = new Schema(
|
|
{
|
|
createdAt: { type: Date },
|
|
requestId: { type: String }
|
|
},
|
|
{
|
|
collection: 'samlCache'
|
|
}
|
|
)
|
|
|
|
exports.SamlCache = mongoose.model('SamlCache', SamlCacheSchema)
|
|
exports.SamlCacheSchema = SamlCacheSchema
|