mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-11 15:10:48 +02:00
add saml cache provider
GitOrigin-RevId: ad9f3e81da37bd932822f13db441ce8afc342eea
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
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
|
||||
Reference in New Issue
Block a user