IO-1138 Offline detection.

This commit is contained in:
Patrick Fic
2021-05-27 13:32:57 -07:00
parent 842cb54867
commit 0b21b8d976
10 changed files with 99 additions and 1 deletions

View File

@@ -48,3 +48,8 @@ export const setPartnerVersion = (version) => ({
type: ApplicationActionTypes.SET_PARTNER_VERSION,
payload: version,
});
export const setOnline = (isOnline) => ({
type: ApplicationActionTypes.SET_ONLINE_STATUS,
payload: isOnline,
});