mirror of
https://github.com/Hessenuk/DiscordTickets.git
synced 2024-11-05 04:13:08 +02:00
Parse JSON if value is string
This commit is contained in:
parent
f7cd3e85e5
commit
c6d56afa11
@ -44,10 +44,26 @@ module.exports = ({ config }, sequelize) => {
|
||||
},
|
||||
opening_questions: {
|
||||
allowNull: true,
|
||||
get() {
|
||||
const raw_value = this.getDataValue('opening_questions');
|
||||
return raw_value
|
||||
? typeof raw_value === 'string'
|
||||
? JSON.parse(raw_value)
|
||||
: raw_value
|
||||
: null;
|
||||
},
|
||||
type: DataTypes.JSON
|
||||
},
|
||||
ping: {
|
||||
defaultValue: [],
|
||||
get() {
|
||||
const raw_value = this.getDataValue('ping');
|
||||
return raw_value
|
||||
? typeof raw_value === 'string'
|
||||
? JSON.parse(raw_value)
|
||||
: raw_value
|
||||
: null;
|
||||
},
|
||||
type: DataTypes.JSON
|
||||
},
|
||||
require_topic: {
|
||||
@ -56,6 +72,14 @@ module.exports = ({ config }, sequelize) => {
|
||||
},
|
||||
roles: {
|
||||
allowNull: false,
|
||||
get() {
|
||||
const raw_value = this.getDataValue('roles');
|
||||
return raw_value
|
||||
? typeof raw_value === 'string'
|
||||
? JSON.parse(raw_value)
|
||||
: raw_value
|
||||
: null;
|
||||
},
|
||||
type: DataTypes.JSON
|
||||
},
|
||||
survey: {
|
||||
|
@ -49,6 +49,14 @@ module.exports = ({ config }, sequelize) => {
|
||||
},
|
||||
tags: {
|
||||
defaultValue: {},
|
||||
get() {
|
||||
const raw_value = this.getDataValue('tags');
|
||||
return raw_value
|
||||
? typeof raw_value === 'string'
|
||||
? JSON.parse(raw_value)
|
||||
: raw_value
|
||||
: null;
|
||||
},
|
||||
type: DataTypes.JSON
|
||||
}
|
||||
}, { tableName: DB_TABLE_PREFIX + 'guilds' });
|
||||
|
@ -4,6 +4,14 @@ module.exports = (client, sequelize) => {
|
||||
sequelize.define('Panel', {
|
||||
categories: {
|
||||
allowNull: false,
|
||||
get() {
|
||||
const raw_value = this.getDataValue('categories');
|
||||
return raw_value
|
||||
? typeof raw_value === 'string'
|
||||
? JSON.parse(raw_value)
|
||||
: raw_value
|
||||
: null;
|
||||
},
|
||||
type: DataTypes.JSON
|
||||
},
|
||||
channel: {
|
||||
|
@ -18,6 +18,14 @@ module.exports = (client, sequelize) => {
|
||||
},
|
||||
questions: {
|
||||
allowNull: true,
|
||||
get() {
|
||||
const raw_value = this.getDataValue('questions');
|
||||
return raw_value
|
||||
? typeof raw_value === 'string'
|
||||
? JSON.parse(raw_value)
|
||||
: raw_value
|
||||
: null;
|
||||
},
|
||||
type: DataTypes.JSON
|
||||
}
|
||||
}, { tableName: DB_TABLE_PREFIX + 'surveys' });
|
||||
|
@ -4,6 +4,14 @@ module.exports = (client, sequelize) => {
|
||||
sequelize.define('SurveyResponse', {
|
||||
answers: {
|
||||
allowNull: true,
|
||||
get() {
|
||||
const raw_value = this.getDataValue('answers');
|
||||
return raw_value
|
||||
? typeof raw_value === 'string'
|
||||
? JSON.parse(raw_value)
|
||||
: raw_value
|
||||
: null;
|
||||
},
|
||||
type: DataTypes.JSON
|
||||
},
|
||||
survey: {
|
||||
|
@ -63,6 +63,14 @@ module.exports = (_client, sequelize) => {
|
||||
},
|
||||
pinned_messages: {
|
||||
defaultValue: [],
|
||||
get() {
|
||||
const raw_value = this.getDataValue('pinned_messages');
|
||||
return raw_value
|
||||
? typeof raw_value === 'string'
|
||||
? JSON.parse(raw_value)
|
||||
: raw_value
|
||||
: null;
|
||||
},
|
||||
type: DataTypes.JSON
|
||||
},
|
||||
topic: {
|
||||
|
Loading…
Reference in New Issue
Block a user