Home
last modified time | relevance | path

Searched refs:SessionActions (Results 1 – 6 of 6) sorted by relevance

/expo/home/api/__tests__/
H A DAuthSessions-test.js14 let SessionActions; variable
23 SessionActions = require('../../redux/SessionActions').default;
25 await Store.dispatch(SessionActions.signOut());
40 await Store.dispatch(SessionActions.setSession({ sessionSecret }));
58 await Store.dispatch(SessionActions.setSession({ sessionSecret }));
/expo/home/redux/
H A DSessionReducer.ts13 type SessionActions = alias
20 export default (state: SessionType = new SessionState(), action: SessionActions): SessionType => {
/expo/home/screens/AccountModal/
H A DLoggedInAccountView.tsx11 import SessionActions from '../../redux/SessionActions';
26 dispatch(SessionActions.signOut());
H A DLoggedOutAccountView.tsx17 import SessionActions from '../../redux/SessionActions';
139 SessionActions.setSession({
/expo/home/screens/DeleteAccountScreen/
H A Dindex.tsx19 import SessionActions from '../../redux/SessionActions';
85 dispatch(SessionActions.signOut());
/expo/home/
H A DHomeApp.tsx27 import SessionActions from './redux/SessionActions';
102 dispatch(SessionActions.setSession(storedSession));