biz-slide-core 1.2.8 → 1.2.9
Sign up to get free protection for your applications and to get access to all the features.
@@ -4,7 +4,8 @@ exports.TrainingQueueModel = void 0;
|
|
4
4
|
var mongoose_1 = require("mongoose");
|
5
5
|
var TrainingQueueSchema = new mongoose_1.Schema({
|
6
6
|
url: { type: String, default: null },
|
7
|
-
|
7
|
+
isCompleted: { type: Boolean, default: false },
|
8
|
+
isLocked: { type: Boolean, default: false },
|
8
9
|
createdAt: { type: Date, default: Date.now() },
|
9
10
|
updatedAt: { type: Date, default: Date.now() },
|
10
11
|
deletedAt: { type: Date, default: null },
|