mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-20 06:40:31 +00:00
fix(BillPayment): Validate the opened payment bills. fix(redux): presist redux state. fix(useRequestQuery): hook.
30 lines
707 B
JavaScript
30 lines
707 B
JavaScript
import { useMutation } from 'react-query';
|
|
import { useRequestQuery } from '../useQueryRequest';
|
|
import useApiRequest from '../useRequest';
|
|
|
|
/**
|
|
* Authentication invite accept.
|
|
*/
|
|
export const useAuthInviteAccept = (props) => {
|
|
const apiRequest = useApiRequest();
|
|
|
|
return useMutation(
|
|
([values, token]) => apiRequest.post(`invite/accept/${token}`, values),
|
|
props,
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Retrieve the invite meta by the given token.
|
|
* @param {string} token - Token.
|
|
*/
|
|
export const useInviteMetaByToken = (token, props) => {
|
|
return useRequestQuery(
|
|
['INVITE_META', token],
|
|
{ method: 'get', url: `invite/invited/${token}` },
|
|
{
|
|
select: (res) => res.data,
|
|
...props
|
|
}
|
|
);
|
|
} |