SpiderControllerGetByNames Method

GetContributersByName receives a HttpPost request with a list of ProjectRequestDtos and then returns a list of repositories for each ProjectRequestDto

Definition

Namespace: spider.Controllers
Assembly: spider (in spider.exe) Version: 1.0.0+fc7a1b35c0f8728ecbe7255d9fa5b4d3324ce3c6
C#
public Task<ActionResult<List<ProjectDto>>> GetByNames(
	List<ProjectRequestDto> repos
)

Parameters

repos  ListProjectRequestDto
List of ProjectRequestDtos with at least the repo and ownerNames

Return Value

TaskActionResultListProjectDto
A list of repositories in the form of List<ProjectDto>

See Also