diff options
Diffstat (limited to 'src/reports/common/scheduleReport.js')
-rw-r--r-- | src/reports/common/scheduleReport.js | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/reports/common/scheduleReport.js b/src/reports/common/scheduleReport.js new file mode 100644 index 00000000..5d8f9e28 --- /dev/null +++ b/src/reports/common/scheduleReport.js @@ -0,0 +1,26 @@ +export default async (deviceIds, groupIds, report) => { + const response = await fetch('/api/reports', { + method: 'POST', + headers: { 'Content-Type': 'application/json' }, + body: JSON.stringify(report), + }); + if (response.ok) { + report = await response.json(); + if (deviceIds.length) { + await fetch('/api/permissions/bulk', { + method: 'POST', + headers: { 'Content-Type': 'application/json' }, + body: JSON.stringify(deviceIds.map((id) => ({ deviceId: id, reportId: report.id }))), + }); + } + if (groupIds.length) { + await fetch('/api/permissions/bulk', { + method: 'POST', + headers: { 'Content-Type': 'application/json' }, + body: JSON.stringify(groupIds.map((id) => ({ groupId: id, reportId: report.id }))), + }); + } + return null; + } + return response.text(); +}; |