You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
... which is awkward given that all(?) the other API calls dealing with projects use the full project name syntax with a slash. Let's make create_project() support the usual syntax:
mc.create_project("my_workspace/my_project")
It would be good to keep the old style still working so that we do not break backwards compatibility, but we could issue a deprecation warning.
There's also create_project_and_push() with the same problem.
create_project()
syntax to create project "my_workspace/my_project" currently looks like this:... which is awkward given that all(?) the other API calls dealing with projects use the full project name syntax with a slash. Let's make create_project() support the usual syntax:
It would be good to keep the old style still working so that we do not break backwards compatibility, but we could issue a deprecation warning.
There's also create_project_and_push() with the same problem.
And clone_project has this issue too:
For cloning, also the CLI has this awkward syntax:
(should be
mergin clone SOURCE_PROJECT_PATH CLONED_PROJECT_PATH
)The text was updated successfully, but these errors were encountered: