Rewrite HTML export to support all node types (#3)
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone Build is passing

This commit is contained in:
2020-10-18 12:55:32 -05:00
parent 1825c11569
commit b5b2a7cd85
17 changed files with 4117 additions and 9 deletions

View File

@@ -1,4 +1,5 @@
const { Model } = require('flitter-orm')
const uuid = require('uuid/v4')
class ExportModel extends Model {
static get schema() {
@@ -10,6 +11,7 @@ class ExportModel extends Model {
file_id: String,
PageId: String,
Active: { type: Boolean, default: true },
UUID: { type: String, default: uuid },
}
}
}