mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-23 14:54:05 +00:00
fix: cast getParent and getChildren to Beans
This commit is contained in:
parent
71c7ee69c7
commit
c079971a7b
1 changed files with 10 additions and 5 deletions
|
@ -1629,10 +1629,10 @@ class Monitor extends BeanModel {
|
|||
/**
|
||||
* Gets Parent of the monitor
|
||||
* @param {number} monitorID ID of monitor to get
|
||||
* @returns {Promise<LooseObject<any>>} Parent
|
||||
* @returns {Promise<Bean | null>} Parent
|
||||
*/
|
||||
static async getParent(monitorID) {
|
||||
return await R.getRow(`
|
||||
const result = await R.getRow(`
|
||||
SELECT parent.* FROM monitor parent
|
||||
LEFT JOIN monitor child
|
||||
ON child.parent = parent.id
|
||||
|
@ -1640,20 +1640,25 @@ class Monitor extends BeanModel {
|
|||
`, [
|
||||
monitorID,
|
||||
]);
|
||||
|
||||
if (!result) {
|
||||
return null;
|
||||
}
|
||||
return R.convertToBean("monitor", result);
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets all Children of the monitor
|
||||
* @param {number} monitorID ID of monitor to get
|
||||
* @returns {Promise<LooseObject<any>>} Children
|
||||
* @returns {Promise<Bean[]>} Children
|
||||
*/
|
||||
static async getChildren(monitorID) {
|
||||
return await R.getAll(`
|
||||
return R.convertToBeans("monitor", await R.getAll(`
|
||||
SELECT * FROM monitor
|
||||
WHERE parent = ?
|
||||
`, [
|
||||
monitorID,
|
||||
]);
|
||||
]));
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue