AddMemberToGroup adds a user to a group, optionally specifying if they are a maintainer.
(ctx context.Context, orgID uuid.UUID, groupID uuid.UUID, userID uuid.UUID, maintainer bool)
| 50 | ListMembers(ctx context.Context, orgID uuid.UUID, groupID uuid.UUID, opts *ListMembersOpts, paginationOpts *pagination.OffsetPaginationOpts) ([]*GroupMembership, int, error) |
| 51 | // AddMemberToGroup adds a user to a group, optionally specifying if they are a maintainer. |
| 52 | AddMemberToGroup(ctx context.Context, orgID uuid.UUID, groupID uuid.UUID, userID uuid.UUID, maintainer bool) (*GroupMembership, error) |
| 53 | // RemoveMemberFromGroup removes a user from a group. |
| 54 | RemoveMemberFromGroup(ctx context.Context, orgID uuid.UUID, groupID uuid.UUID, userID uuid.UUID) error |
| 55 | // UpdateMemberMaintainerStatus updates the maintainer status of a group member. |
no outgoing calls