Permanently delete a project from the Mergin Maps server. Wraps
mergin remove from the mergin-client CLI installed in the package venv.
Usage
rfp_mergin_remove(name, confirm = FALSE)
Arguments
- name
Character. Full Mergin project name as namespace/project.
- confirm
Logical. Must be TRUE to actually delete the project.
Default is FALSE, which errors with a reminder.
Value
Invisible character — the name of the removed Mergin project.
Details
This is destructive — the project and all its data are removed from the
server with no recovery. The local project directory is not touched.
To prevent accidental deletion, you must explicitly pass confirm = TRUE.
Examples
if (FALSE) { # \dontrun{
rfp_mergin_remove("newgraph/rfp_test_20260409_104057", confirm = TRUE)
} # }