2024-10-27 21:27:41 +00:00
|
|
|
/* Copyright (C) 2024 Manuel Bustillo*/
|
|
|
|
|
2024-10-27 14:02:10 +01:00
|
|
|
export const getCsrfToken = () => {
|
|
|
|
return document.cookie
|
|
|
|
.split("; ")
|
|
|
|
.find((row) => row.startsWith("csrf-token"))
|
|
|
|
?.split("=")[1] || 'unknown';
|
|
|
|
}
|
2024-12-01 18:02:25 +01:00
|
|
|
|
|
|
|
export const getSlug = () => localStorage.getItem('slug') || 'default';
|