MCPcopy
hub / github.com/harness/harness / AdminDeleteUser

Function AdminDeleteUser

web/src/cde-gitness/services/index.tsx:1607–1614  ·  view source on GitHub ↗
(props: AdminDeleteUserProps)

Source from the content-addressed store, hash-verified

1605export type AdminDeleteUserProps = Omit<MutateProps<void, UsererrorError, void, string, void>, 'path' | 'verb'>
1606
1607export const AdminDeleteUser = (props: AdminDeleteUserProps) => (
1608 <Mutate<void, UsererrorError, void, string, void>
1609 verb="DELETE"
1610 path={`/admin/users`}
1611 base={getConfig('api/v1')}
1612 {...props}
1613 />
1614)
1615
1616export type UseAdminDeleteUserProps = Omit<UseMutateProps<void, UsererrorError, void, string, void>, 'path' | 'verb'>
1617

Callers

nothing calls this directly

Calls 1

getConfigFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…