Make OWNER mode the default edit_status for anonymous owned maps

This commit is contained in:
Yohan Boniface 2023-09-18 17:42:52 +02:00
parent 5f5196a52d
commit 360b6415cb

View file

@ -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)