mirror of https://github.com/requarks/wiki
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.
38 lines
813 B
38 lines
813 B
const Model = require('objection').Model
|
|
|
|
/**
|
|
* Locales model
|
|
*/
|
|
module.exports = class Locale extends Model {
|
|
static get tableName() { return 'locales' }
|
|
static get idColumn() { return 'code' }
|
|
|
|
static get jsonSchema () {
|
|
return {
|
|
type: 'object',
|
|
required: ['code', 'name'],
|
|
|
|
properties: {
|
|
code: {type: 'string'},
|
|
isRTL: {type: 'boolean', default: false},
|
|
name: {type: 'string'},
|
|
nativeName: {type: 'string'},
|
|
createdAt: {type: 'string'},
|
|
updatedAt: {type: 'string'}
|
|
}
|
|
}
|
|
}
|
|
|
|
static get jsonAttributes() {
|
|
return ['strings']
|
|
}
|
|
|
|
$beforeUpdate() {
|
|
this.updatedAt = new Date().toISOString()
|
|
}
|
|
$beforeInsert() {
|
|
this.createdAt = new Date().toISOString()
|
|
this.updatedAt = new Date().toISOString()
|
|
}
|
|
}
|