Client - revoke all token for a given client

This commit is contained in:
Sam
2022-06-12 18:03:26 +02:00
parent e01248d0d1
commit 524a221725
9 changed files with 94 additions and 9 deletions

View File

@ -9,4 +9,6 @@ export const getters: GetterTree<IOAuth2State, IRootState> & IOAuth2Getters = {
[OAUTH2_STORE.GETTERS.CLIENTS]: (state: IOAuth2State) => state.clients,
[OAUTH2_STORE.GETTERS.CLIENTS_PAGINATION]: (state: IOAuth2State) =>
state.pagination,
[OAUTH2_STORE.GETTERS.REVOCATION_SUCCESSFUL]: (state: IOAuth2State) =>
state.revocationSuccessful,
}