We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12cf6f4 commit 45995cdCopy full SHA for 45995cd
1 file changed
scripts/manage_permissions.py
@@ -141,7 +141,12 @@ def list_available_access_controls() -> None:
141
"""
142
print("The following access controls can be assigned:")
143
144
- for control in AccessControls.list():
+ currently_supported_access_controls = [
145
+ AccessControls.ALLOW_ALL_TYPES,
146
+ AccessControls.ALLOW_OVERRIDE_CREATION_DATETIME,
147
+ AccessControls.ALLOW_SUPERSEDE_WITH_DELETE_FAILURE,
148
+ ]
149
+ for control in currently_supported_access_controls:
150
print(f"- {control}")
151
152
0 commit comments