From 360b6415cb05b880b3e0f420006bf9014b705411 Mon Sep 17 00:00:00 2001 From: Yohan Boniface Date: Mon, 18 Sep 2023 17:42:52 +0200 Subject: [PATCH] Make OWNER mode the default edit_status for anonymous owned maps --- umap/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/umap/forms.py b/umap/forms.py index 636013eb..e6893690 100644 --- a/umap/forms.py +++ b/umap/forms.py @@ -53,8 +53,8 @@ class DataLayerPermissionsForm(forms.ModelForm): class AnonymousDataLayerPermissionsForm(forms.ModelForm): STATUS = ( - (Map.ANONYMOUS, _("Everyone can edit")), (Map.OWNER, _("Only editable with secret edit link")), + (Map.ANONYMOUS, _("Everyone can edit")), ) edit_status = forms.ChoiceField(choices=STATUS)