(controlRight int, selectedRight func(string, int))
| 335 | } |
| 336 | |
| 337 | func getControlPermsForm(controlRight int, selectedRight func(string, int)) *XForm { |
| 338 | form := NewXForm(). |
| 339 | AddDropDown( |
| 340 | "Extended Right", extendedVals, |
| 341 | controlRight, selectedRight) |
| 342 | return form |
| 343 | } |
| 344 | |
| 345 | func getValidatedWritePermsForm(validatedWriteRight int, selectedRight func(string, int)) *XForm { |
| 346 | form := NewXForm(). |
no test coverage detected