Skip to content
Snippets Groups Projects

Fix broken token authentication

Merged Tae Hoon requested to merge tae/pleroma-fe:fix-token-auth-login into develop
All threads resolved!
Files
6
@@ -26,9 +26,10 @@ const LoginForm = {
this.isTokenAuth ? this.submitToken() : this.submitPassword()
},
submitToken () {
const { clientId } = this.oauth
const { clientId, clientSecret } = this.oauth
const data = {
clientId,
clientSecret,
instance: this.instance.server,
commit: this.$store.commit
}
Loading