MCPcopy Index your code
hub / github.com/TaskingAI/TaskingAI / getApiKeys

Function getApiKeys

frontend/src/axios/apiKeys.ts:29–32  ·  view source on GitHub ↗
(id: string, plain: string)

Source from the content-addressed store, hash-verified

27 return await request.get(`${project_base_url}/apikeys?${str}`)
28}
29const getApiKeys = async (id: string, plain: string) => {
30 const project_base_url = `api/v1`
31 return await request.get(`${project_base_url}/apikeys/${id}?plain=${plain}`)
32}
33const updateApiKeys = async (id, params: object) => {
34 const project_base_url = `api/v1`
35 return await request.post(`${project_base_url}/apikeys/${id}`, params)

Callers 1

handleShowFunction · 0.90

Calls 1

getMethod · 0.45

Tested by

no test coverage detected