mirror of https://github.com/Requarks/wiki.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
498 B
27 lines
498 B
const Model = require('objection').Model
|
|
|
|
/* global WIKI */
|
|
|
|
/**
|
|
* Navigation model
|
|
*/
|
|
module.exports = class Navigation extends Model {
|
|
static get tableName() { return 'navigation' }
|
|
static get idColumn() { return 'key' }
|
|
|
|
static get jsonSchema () {
|
|
return {
|
|
type: 'object',
|
|
required: ['key'],
|
|
|
|
properties: {
|
|
key: {type: 'string'},
|
|
config: {type: 'object'}
|
|
}
|
|
}
|
|
}
|
|
|
|
static async getTree() {
|
|
return WIKI.models.navigation.query()
|
|
}
|
|
}
|