(ctx context.Context, orgID uuid.UUID, name string)
| 37 | FindProjectByOrgIDAndName(ctx context.Context, orgID uuid.UUID, projectName string) (*Project, error) |
| 38 | FindProjectByOrgIDAndID(ctx context.Context, orgID uuid.UUID, projectID uuid.UUID) (*Project, error) |
| 39 | Create(ctx context.Context, orgID uuid.UUID, name string) (*Project, error) |
| 40 | ListProjectsByOrgID(ctx context.Context, orgID uuid.UUID) ([]*Project, error) |
| 41 | // ListMembers retrieves a list of members in a project, optionally filtered by admin status. |
| 42 | ListMembers(ctx context.Context, orgID uuid.UUID, projectID uuid.UUID, paginationOpts *pagination.OffsetPaginationOpts) ([]*ProjectMembership, int, error) |
no outgoing calls
no test coverage detected