Skip to content

Commit

Permalink
Usage of the loadSchema flag to decide whether to load schema GUIDs.
Browse files Browse the repository at this point in the history
  • Loading branch information
Macmod committed Feb 27, 2024
1 parent aaba6eb commit 133f796
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions dacl.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,11 @@ var (
groupPrincipal string
)

func initDaclPage() {
func initDaclPage(loadSchema bool) {
loadRightVars()
loadSchemaVars()
if loadSchema {
loadSchemaVars()
}

objectNameInputDacl = tview.NewInputField()
objectNameInputDacl.
Expand Down

0 comments on commit 133f796

Please sign in to comment.