CoreID/app/models/vault/Entry.model.js
garrettmills ced3a15d00
All checks were successful
continuous-integration/drone/push Build is passing
Remove vault menu item
2021-05-04 09:27:33 -05:00

30 lines
646 B
JavaScript

const { Model } = require('flitter-orm')
class EntryModel extends Model {
static get services() {
return [...super.services, 'models']
}
static get schema() {
return {
active: { type: Boolean, default: true },
vault_id: String,
key: String,
locked_value: String,
}
}
async to_api() {
return {
id: this.id,
_id: this.id,
vault_id: this.vault_id,
key: this.key,
locked_value: this.locked_value,
active: this.active,
}
}
}
module.exports = exports = EntryModel