Skip to content

Commit

Permalink
Use proper argument names in pool api
Browse files Browse the repository at this point in the history
  • Loading branch information
tmetzl committed Jan 20, 2025
1 parent dc9a3ff commit 89f9b43
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/api/src/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@ export const API = {
name: name,
init_repository: init_repository,
}),
rename: (old_name, new_name) =>
rename: (name, new_name) =>
requests.put(POOL_API_ROOT, {
action: "rename",
old_name: old_name,
new_name: new_name,
}),
copy: (old_name, new_name) =>
copy: (name, new_name) =>
requests.put(POOL_API_ROOT, {
action: "copy",
old_name: old_name,
Expand Down

0 comments on commit 89f9b43

Please sign in to comment.