Mark-Lasfar commited on
Commit
d02ef17
·
1 Parent(s): bdded2a

Fix: Optimize loadStore function, fix preview mode and follow-status

Browse files
Files changed (1) hide show
  1. models/TemplateStore.js +7 -0
models/TemplateStore.js CHANGED
@@ -237,6 +237,13 @@ const templateSchema = new mongoose.Schema({
237
  js: { type: String, default: '' }
238
  },
239
 
 
 
 
 
 
 
 
240
  // 💱 العملة
241
  currency: { type: String, default: 'USD', uppercase: true },
242
 
 
237
  js: { type: String, default: '' }
238
  },
239
 
240
+ templateUrl: { type: String, default: null },
241
+ uploadedFiles: {
242
+ type: mongoose.Schema.Types.Mixed,
243
+ default: null
244
+ },
245
+ hasIndexHtml: { type: Boolean, default: false },
246
+
247
  // 💱 العملة
248
  currency: { type: String, default: 'USD', uppercase: true },
249