5 lines
116 B
JavaScript
5 lines
116 B
JavaScript
async function testNotifications() {
|
|
|
|
const url = '/api/test_notify'
|
|
await fetch(url, { method: 'post' })
|
|
}
|