updated storage account stuff to take auth id

This commit is contained in:
2022-08-26 15:19:34 +01:00
parent 671d49c394
commit 862a953aae
18 changed files with 346 additions and 133 deletions
+8
View File
@@ -5,6 +5,7 @@ export const AccountDetailsDataActionTypes = {
SETLOGGEDINUSER: "SETLOGGEDINUSER",
SETACCOUNTCREATED: "SETACCOUNTCREATED",
USER_LOGOUT: "USER_LOGOUT",
SETCONTAINERID: "SETCONTAINERID",
};
export const setCookieConsent = (cookieObj) => (dispatch) => {
@@ -47,3 +48,10 @@ export const setAccCr = (accCr) => (dispatch) => {
accCr: accCr,
});
};
export const setContainerID = (containerID) => (dispatch) => {
return dispatch({
type: AccountDetailsDataActionTypes.SETCONTAINERID,
containerID: containerID,
});
};