mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
8cca5d3316
Add permission system for managed users GitOrigin-RevId: 9d7b38c594cc77204dbee22c92263d002fc8778f
64 lines
1.6 KiB
JavaScript
64 lines
1.6 KiB
JavaScript
const mongoose = require('../infrastructure/Mongoose')
|
|
const { TeamInviteSchema } = require('./TeamInvite')
|
|
|
|
const { Schema } = mongoose
|
|
const { ObjectId } = Schema
|
|
|
|
const SubscriptionSchema = new Schema(
|
|
{
|
|
admin_id: {
|
|
type: ObjectId,
|
|
ref: 'User',
|
|
index: { unique: true, dropDups: true },
|
|
},
|
|
manager_ids: {
|
|
type: [ObjectId],
|
|
ref: 'User',
|
|
required: true,
|
|
validate: function (managers) {
|
|
// require at least one manager
|
|
return !!managers.length
|
|
},
|
|
},
|
|
member_ids: [{ type: ObjectId, ref: 'User' }],
|
|
groupPolicy: { type: ObjectId, ref: 'GroupPolicy' },
|
|
invited_emails: [String],
|
|
teamInvites: [TeamInviteSchema],
|
|
recurlySubscription_id: String,
|
|
teamName: { type: String },
|
|
teamNotice: { type: String },
|
|
planCode: { type: String },
|
|
groupPlan: { type: Boolean, default: false },
|
|
membersLimit: { type: Number, default: 0 },
|
|
customAccount: Boolean,
|
|
overleaf: {
|
|
id: {
|
|
type: Number,
|
|
index: {
|
|
unique: true,
|
|
partialFilterExpression: { 'overleaf.id': { $exists: true } },
|
|
},
|
|
},
|
|
},
|
|
recurlyStatus: {
|
|
state: {
|
|
type: String,
|
|
},
|
|
trialStartedAt: {
|
|
type: Date,
|
|
},
|
|
trialEndsAt: {
|
|
type: Date,
|
|
},
|
|
},
|
|
},
|
|
{ minimize: false }
|
|
)
|
|
|
|
// Subscriptions have no v1 data to fetch
|
|
SubscriptionSchema.method('fetchV1Data', function (callback) {
|
|
callback(null, this)
|
|
})
|
|
|
|
exports.Subscription = mongoose.model('Subscription', SubscriptionSchema)
|
|
exports.SubscriptionSchema = SubscriptionSchema
|