15 lines
466 B
JavaScript
15 lines
466 B
JavaScript
import { Controller } from '@hotwired/stimulus';
|
|
|
|
/*
|
|
* The following line makes this controller "lazy": it won't be downloaded until needed
|
|
* See https://github.com/symfony/stimulus-bridge#lazy-controllers
|
|
*/
|
|
/* stimulusFetch: 'lazy' */
|
|
export default class extends Controller {
|
|
deleteMonitor(data) {
|
|
fetch(`/api/monitor/${data.params.id}`, {method: 'DELETE'})
|
|
.then(res => res.json())
|
|
.then(json => console.debug(json));
|
|
}
|
|
}
|