mirror of
https://github.com/umami-software/umami.git
synced 2026-02-06 05:37:20 +01:00
Move auth token logic to useApi hook.
This commit is contained in:
parent
d19b6b5a82
commit
3a8bfd1dbd
7 changed files with 56 additions and 28 deletions
|
|
@ -1,9 +1,6 @@
|
|||
import { makeUrl } from './url';
|
||||
import { AUTH_TOKEN } from './constants';
|
||||
|
||||
export const apiRequest = (method, url, body, headers) => {
|
||||
const authToken = getItem(AUTH_TOKEN);
|
||||
|
||||
return fetch(url, {
|
||||
method,
|
||||
cache: 'no-cache',
|
||||
|
|
@ -11,7 +8,6 @@ export const apiRequest = (method, url, body, headers) => {
|
|||
headers: {
|
||||
Accept: 'application/json',
|
||||
'Content-Type': 'application/json',
|
||||
...(authToken ? { Authorization: `Bearer ${authToken}` } : {}),
|
||||
...headers,
|
||||
},
|
||||
body,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue