Skip to content

Commit 13f5f48

Browse files
authored
Merge pull request #702 from johnduprey/dev
Individual Domain
2 parents 60663bb + 1d4ce69 commit 13f5f48

File tree

2 files changed

+268
-43
lines changed

2 files changed

+268
-43
lines changed

src/store/api/domains.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,10 @@ export const domainsApi = baseApi.injectEndpoints({
3939
}),
4040
}),
4141
execDnsHelper: builder.query({
42-
query: ({ action, domain }) => ({
42+
query: ({ ...rest }) => ({
4343
path: '/api/ExecDnsHelper',
4444
params: {
45-
Action: action,
46-
Domain: domain,
45+
...rest,
4746
},
4847
}),
4948
}),

0 commit comments

Comments
 (0)