(t *testing.T, db database.Store)
| 24 | } |
| 25 | |
| 26 | func Organization(t *testing.T, db database.Store) OrganizationBuilder { |
| 27 | return OrganizationBuilder{ |
| 28 | t: t, |
| 29 | db: db, |
| 30 | members: []uuid.UUID{}, |
| 31 | groups: make(map[database.Group][]uuid.UUID), |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | type OrganizationResponse struct { |
| 36 | Org database.Organization |
no outgoing calls