-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauth.js
28 lines (24 loc) · 1005 Bytes
/
auth.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// export default async function ({ app }) {
// if (!app.$auth.loggedIn) {
// return
// }
// const auth = app.$auth;
// const authStrategy = auth.strategy.name;
// if(authStrategy === 'facebook' || authStrategy === 'google'){
// const token = auth.getToken(authStrategy).substr(7)
// const authStrategyConverted = authStrategy === 'facebook' ? 'fb' : 'google';
// const url = `/user/#/${authStrategyConverted}?token=${token}`;
// try {
// const {data} = await app.$axios.$post(url, null);
// auth.setToken('local', "Bearer "+ data.access_token);
// setTimeout( async () => {
// auth.setStrategy('local');
// setTimeout( async () => {
// await auth.fetchUser();
// })
// });
// } catch (e) {
// console.log(e);
// }
// }
// }