helloya20's picture
Upload 2345 files
f0743f4 verified
import roleSchema from '~/schema/role';
import type { IRole } from '~/types';
/**
* Creates or returns the Role model using the provided mongoose instance and schema
*/
export function createRoleModel(mongoose: typeof import('mongoose')) {
return mongoose.models.Role || mongoose.model<IRole>('Role', roleSchema);
}