Skip to content

Commit

Permalink
Allow force flag for ACLs being applied on ix volumes
Browse files Browse the repository at this point in the history
  • Loading branch information
Qubad786 committed Jul 23, 2024
1 parent 38d9b8a commit cd2b3d4
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion catalog_reader/questions_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,26 @@
'hidden': True
}
},
ACL_QUESTION[1]
ACL_QUESTION[1],
{
'variable': 'options',
'label': 'ACL Options',
'schema': {
'type': 'dict',
'hidden': True,
'attrs': [
{
'variable': 'force',
'label': 'Force Flag',
'description': 'Enabling `Force` applies ACL even if the path has existing data',
'schema': {
'type': 'boolean',
'default': True,
}
},
],
},
},
]


Expand Down

0 comments on commit cd2b3d4

Please sign in to comment.