chat / packages /data-schemas /src /models /aclEntry.ts
helloya20's picture
Upload 2345 files
f0743f4 verified
import aclEntrySchema from '~/schema/aclEntry';
import type * as t from '~/types';
/**
* Creates or returns the AclEntry model using the provided mongoose instance and schema
*/
export function createAclEntryModel(mongoose: typeof import('mongoose')) {
return mongoose.models.AclEntry || mongoose.model<t.IAclEntry>('AclEntry', aclEntrySchema);
}