salix/modules/ticket/back/models/state.js

21 lines
589 B
JavaScript

module.exports = Self => {
require('../methods/state/editableStates')(Self);
require('../methods/state/isEditable')(Self);
/**
* Checks if the alertLevel of a state is 0.
*
* @param {Integer} stateId The user id
* @return {Boolean} %true if user has the role, %false otherwise
*/
Self.isAlertLevelZero = async function(stateId) {
let result = await Self.rawSql(
`SELECT alertLevel
FROM vn.state
WHERE id = ?`,
[stateId]
);
return result[0].alertLevel == 0;
};
};