(slug, enabled)
| 79 | } |
| 80 | |
| 81 | export const updateSkillEnabled = async (slug, enabled) => { |
| 82 | return apiPut(`${BASE_URL}/${encodeURIComponent(slug)}/enabled`, { enabled }) |
| 83 | } |
| 84 | |
| 85 | export const deleteSkillFile = async (slug, path) => { |
| 86 | return apiDelete(`${BASE_URL}/${encodeURIComponent(slug)}/file?path=${encodeURIComponent(path)}`) |