mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-22 04:55:33 +03:00
Send dhcp/find_active_dhcp as POST request
This commit is contained in:
parent
d46b65f982
commit
a74c2248fb
3 changed files with 4 additions and 4 deletions
|
@ -561,8 +561,8 @@ export const findActiveDhcpFailure = createAction('FIND_ACTIVE_DHCP_FAILURE');
|
|||
export const findActiveDhcp = () => async (dispatch) => {
|
||||
dispatch(findActiveDhcpRequest());
|
||||
try {
|
||||
const result = await apiClient.findActiveDhcp();
|
||||
dispatch(findActiveDhcpSuccess(result));
|
||||
await apiClient.findActiveDhcp();
|
||||
dispatch(findActiveDhcpSuccess());
|
||||
} catch (error) {
|
||||
dispatch(addErrorToast({ error }));
|
||||
dispatch(findActiveDhcpFailure());
|
||||
|
|
|
@ -306,7 +306,7 @@ export default class Api {
|
|||
// DHCP
|
||||
DHCP_STATUS = { path: 'dhcp/status', method: 'GET' };
|
||||
DHCP_SET_CONFIG = { path: 'dhcp/set_config', method: 'POST' };
|
||||
DHCP_FIND_ACTIVE = { path: 'dhcp/find_active_dhcp', method: 'GET' };
|
||||
DHCP_FIND_ACTIVE = { path: 'dhcp/find_active_dhcp', method: 'POST' };
|
||||
|
||||
getDhcpStatus() {
|
||||
const { path, method } = this.DHCP_STATUS;
|
||||
|
|
|
@ -303,7 +303,7 @@ paths:
|
|||
description: OK
|
||||
|
||||
/dhcp/find_active_dhcp:
|
||||
get:
|
||||
post:
|
||||
tags:
|
||||
- dhcp
|
||||
operationId: checkActiveDhcp
|
||||
|
|
Loading…
Reference in a new issue