Skip to content

Commit

Permalink
Testing new logout
Browse files Browse the repository at this point in the history
  • Loading branch information
cloudmanic committed Nov 13, 2024
1 parent d93bc1d commit d24343a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 74 deletions.
72 changes: 0 additions & 72 deletions src/utils/auth/__tests__/logout.test.js

This file was deleted.

10 changes: 8 additions & 2 deletions src/utils/auth/logout.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,21 @@
import { clearAllServiceWorkerCaches } from 'src/utils/caching'
import logger from 'src/utils/logger'
import { deleteCookie } from 'cookies-next'
import localStorageMgr from 'src/utils/localstorage-mgr'
import { STORAGE_KEY_USERNAME } from 'src/utils/constants'

const logout = async (AuthUser) => {
try {
await AuthUser.signOut()

// Clear the cache so it does not contain any authed content.
await clearAllServiceWorkerCaches()
await localStorageMgr.removeItem(STORAGE_KEY_USERNAME)

// Clear cookie for tabV4OptIn
await deleteCookie('tabV4OptIn')

// Must do this last, as it will cause the page to reload.
await AuthUser.signOut()

return true
} catch (e) {
logger.error(e)
Expand Down

0 comments on commit d24343a

Please sign in to comment.