requirePermissionAllowingOverride
Contract: JBOperatable
- Step by step
 - Code
 - Bug bounty
 
Only allows the speficied account, an operator of the account to proceed, or a truthy override flag.
Definition
modifier requirePermissionAllowingOverride(
  address _account,
  uint256 _domain,
  uint256 _permissionIndex,
  bool _override
) { ... }
- Arguments:
_accountis the account to check for._domainis the domain namespace to look for an operator within._permissionIndexis the index of the permission to check for._overrideis a condition to force allowance for.
 - The modifier function can be used by any internal function.
 
Body
- 
Make sure the message's sender fulfills the criteria.
_requirePermissionAllowingOverride(_account, _domain, _permissionIndex, _override);Internal references:
 - 
Continue the rest of the function.
_;