1
0
Fork 0
mirror of synced 2024-10-02 01:56:57 +13:00

Adding notifier to API for 401 requests, meaning login has notification on fail.

This commit is contained in:
mike12345567 2021-02-22 14:23:16 +00:00
parent b5a2480001
commit b46d9847ad

View file

@ -1,7 +1,7 @@
/**
* API cache for cached request responses.
*/
import { notificationStore } from "../store/notification"
import { notificationStore } from "../store"
let cache = {}
/**
@ -34,6 +34,9 @@ const makeApiCall = async ({ method, url, body, json = true }) => {
switch (response.status) {
case 200:
return response.json()
case 401:
notificationStore.danger("Invalid credentials")
return handleError(`Invalid credentials`)
case 404:
notificationStore.danger("Not found")
return handleError(`${url}: Not Found`)