biz-slide-core 1.2.81 → 1.2.82
Sign up to get free protection for your applications and to get access to all the features.
package/entity/ppt.entity.js
CHANGED
@@ -11,6 +11,7 @@ var PPTSchema = new mongoose_1.Schema({
|
|
11
11
|
templateTypeId: { type: mongoose_1.Schema.Types.ObjectId, ref: "template-type" },
|
12
12
|
systemGeneratedtopics: { type: [String], default: [], _id: false },
|
13
13
|
userSelectedTopics: { type: [String], default: [], _id: false },
|
14
|
+
userLanguageTopics: { type: [String], default: [], _id: false },
|
14
15
|
userReaction: { type: Number, default: 0 },
|
15
16
|
userFeedback: { type: String, default: null },
|
16
17
|
colors: { type: [String], default: [], _id: false },
|
@@ -216,7 +216,6 @@ var nonAuthorizeWithSlideApp = function () {
|
|
216
216
|
};
|
217
217
|
};
|
218
218
|
exports.nonAuthorizeWithSlideApp = nonAuthorizeWithSlideApp;
|
219
|
-
// TODO: Delete It
|
220
219
|
var authorizeWithGpt = function () {
|
221
220
|
return function (req, res, next) {
|
222
221
|
return __awaiter(this, void 0, void 0, function () {
|