diff options
| author | Maksim Pechnikov <parallel588@gmail.com> | 2020-01-06 15:47:36 +0300 |
|---|---|---|
| committer | Maksim Pechnikov <parallel588@gmail.com> | 2020-01-06 15:47:36 +0300 |
| commit | 2810f10d1415df6358cdbe4af75f44fb8fa61358 (patch) | |
| tree | 9cd3fd24478bb999ec73abdc90ed31ad9be3f068 /src/modules/oauth_tokens.js | |
| parent | 50bb8865c57d098a66aafedf9c64878d8e39dba0 (diff) | |
| parent | ad97e03b59783d655c7d414e27b0bce41a6a4ee6 (diff) | |
Merge branch 'develop' of git.pleroma.social:pleroma/pleroma-fe into develop
Diffstat (limited to 'src/modules/oauth_tokens.js')
| -rw-r--r-- | src/modules/oauth_tokens.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/oauth_tokens.js b/src/modules/oauth_tokens.js index 0159a3f1..907cae4a 100644 --- a/src/modules/oauth_tokens.js +++ b/src/modules/oauth_tokens.js @@ -9,7 +9,7 @@ const oauthTokens = { }) }, revokeToken ({ rootState, commit, state }, id) { - rootState.api.backendInteractor.revokeOAuthToken(id).then((response) => { + rootState.api.backendInteractor.revokeOAuthToken({ id }).then((response) => { if (response.status === 201) { commit('swapTokens', state.tokens.filter(token => token.id !== id)) } |
