facebook authentication fix

This commit is contained in:
Čarodej
2022-05-10 08:41:43 +02:00
parent 5d7fed7de8
commit 73c84075c5
4 changed files with 14 additions and 2 deletions

View File

@@ -357,6 +357,10 @@ export default {
},
methods: {
getCallbackEndpoint(service) {
if (service === 'facebook') {
return `${this.config.host}/socialite/${service}/callback/`
}
return `${this.config.host}/socialite/${service}/callback`
},
async storeCredentials(service) {