(allowance int)
| 40 | } |
| 41 | |
| 42 | func (b OrganizationBuilder) EveryoneAllowance(allowance int) OrganizationBuilder { |
| 43 | //nolint: revive // returns modified struct |
| 44 | // #nosec G115 - Safe conversion as allowance is expected to be within int32 range |
| 45 | b.allUsersAllowance = int32(allowance) |
| 46 | return b |
| 47 | } |
| 48 | |
| 49 | func (b OrganizationBuilder) Deleted(deleted bool) OrganizationBuilder { |
| 50 | //nolint: revive // returns modified struct |
no outgoing calls