File size: 323 Bytes
3206347
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { useMutation } from '@tanstack/react-query';

import api from 'helpers/api';

export default function useRevokeAccessToken(token) {
  const query = useMutation({
    mutationFn: async () => {
      const { data } = await api.delete(`/v1/access-tokens/${token}`);

      return data;
    },
  });

  return query;
}