mongoose-restapi-ui
Version:
Rest api library for your mongoose apps, with react ui: mongoose-restapi-ui-component react library
10 lines • 389 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var mongoose_1 = require("mongoose");
var model_1 = require("../definitions/model");
var roleSchema = new mongoose_1.Schema({
super_admin: Boolean,
roles: { type: mongoose_1.Schema.Types.ObjectId, ref: model_1.ROLE_MODEL }
});
exports.default = roleSchema;
//# sourceMappingURL=userSchema.js.map