import { Controller } from "@hotwired/stimulus" export default class LogoutController extends Controller { async logout(ev) { ev.preventDefault(); await fetch(`/logout`, { method: 'POST' }); window.location.href = '/login'; } }