Uses of Class
io.gitea.model.Team
-
Packages that use Team Package Description io.gitea.api io.gitea.model -
-
Uses of Team in io.gitea.api
Methods in io.gitea.api that return Team Modifier and Type Method Description TeamOrganizationApi. orgCreateTeam(java.lang.String org, CreateTeamOption body)Create a teamTeamOrganizationApi. orgEditTeam(java.lang.Integer id, EditTeamOption body)Edit a teamTeamOrganizationApi. orgGetTeam(java.lang.Long id)Get a teamTeamRepositoryApi. repoCheckTeam(java.lang.String owner, java.lang.String repo, java.lang.String team)Check if a team is assigned to a repositoryMethods in io.gitea.api that return types with arguments of type Team Modifier and Type Method Description ApiResponse<Team>OrganizationApi. orgCreateTeamWithHttpInfo(java.lang.String org, CreateTeamOption body)Create a teamApiResponse<Team>OrganizationApi. orgEditTeamWithHttpInfo(java.lang.Integer id, EditTeamOption body)Edit a teamApiResponse<Team>OrganizationApi. orgGetTeamWithHttpInfo(java.lang.Long id)Get a teamjava.util.List<Team>OrganizationApi. orgListTeams(java.lang.String org, java.lang.Integer page, java.lang.Integer limit)List an organization's teamsApiResponse<java.util.List<Team>>OrganizationApi. orgListTeamsWithHttpInfo(java.lang.String org, java.lang.Integer page, java.lang.Integer limit)List an organization's teamsApiResponse<Team>RepositoryApi. repoCheckTeamWithHttpInfo(java.lang.String owner, java.lang.String repo, java.lang.String team)Check if a team is assigned to a repositoryjava.util.List<Team>RepositoryApi. repoListTeams(java.lang.String owner, java.lang.String repo)List a repository's teamsApiResponse<java.util.List<Team>>RepositoryApi. repoListTeamsWithHttpInfo(java.lang.String owner, java.lang.String repo)List a repository's teamsjava.util.List<Team>UserApi. userListTeams(java.lang.Integer page, java.lang.Integer limit)List all the teams a user belongs toApiResponse<java.util.List<Team>>UserApi. userListTeamsWithHttpInfo(java.lang.Integer page, java.lang.Integer limit)List all the teams a user belongs toMethod parameters in io.gitea.api with type arguments of type Team Modifier and Type Method Description com.squareup.okhttp.CallOrganizationApi. orgCreateTeamAsync(java.lang.String org, CreateTeamOption body, ApiCallback<Team> callback)Create a team (asynchronously)com.squareup.okhttp.CallOrganizationApi. orgEditTeamAsync(java.lang.Integer id, EditTeamOption body, ApiCallback<Team> callback)Edit a team (asynchronously)com.squareup.okhttp.CallOrganizationApi. orgGetTeamAsync(java.lang.Long id, ApiCallback<Team> callback)Get a team (asynchronously)com.squareup.okhttp.CallOrganizationApi. orgListTeamsAsync(java.lang.String org, java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<Team>> callback)List an organization's teams (asynchronously)com.squareup.okhttp.CallRepositoryApi. repoCheckTeamAsync(java.lang.String owner, java.lang.String repo, java.lang.String team, ApiCallback<Team> callback)Check if a team is assigned to a repository (asynchronously)com.squareup.okhttp.CallRepositoryApi. repoListTeamsAsync(java.lang.String owner, java.lang.String repo, ApiCallback<java.util.List<Team>> callback)List a repository's teams (asynchronously)com.squareup.okhttp.CallUserApi. userListTeamsAsync(java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<Team>> callback)List all the teams a user belongs to (asynchronously) -
Uses of Team in io.gitea.model
Methods in io.gitea.model that return Team Modifier and Type Method Description TeamTeam. addUnitsItem(java.lang.String unitsItem)TeamTeam. canCreateOrgRepo(java.lang.Boolean canCreateOrgRepo)TeamTeam. description(java.lang.String description)TeamTimelineComment. getAssigneeTeam()Get assigneeTeamTeamPullReview. getTeam()Get teamTeamTeam. id(java.lang.Long id)TeamTeam. includesAllRepositories(java.lang.Boolean includesAllRepositories)TeamTeam. name(java.lang.String name)TeamTeam. organization(Organization organization)TeamTeam. permission(Team.PermissionEnum permission)TeamTeam. putUnitsMapItem(java.lang.String key, java.lang.String unitsMapItem)TeamTeam. units(java.util.List<java.lang.String> units)TeamTeam. unitsMap(java.util.Map<java.lang.String,java.lang.String> unitsMap)Methods in io.gitea.model that return types with arguments of type Team Modifier and Type Method Description java.util.List<Team>InlineResponse200. getData()Get datajava.util.List<Team>RepoTransfer. getTeams()Get teamsMethods in io.gitea.model with parameters of type Team Modifier and Type Method Description InlineResponse200InlineResponse200. addDataItem(Team dataItem)RepoTransferRepoTransfer. addTeamsItem(Team teamsItem)TimelineCommentTimelineComment. assigneeTeam(Team assigneeTeam)voidTimelineComment. setAssigneeTeam(Team assigneeTeam)voidPullReview. setTeam(Team team)PullReviewPullReview. team(Team team)Method parameters in io.gitea.model with type arguments of type Team Modifier and Type Method Description InlineResponse200InlineResponse200. data(java.util.List<Team> data)voidInlineResponse200. setData(java.util.List<Team> data)voidRepoTransfer. setTeams(java.util.List<Team> teams)RepoTransferRepoTransfer. teams(java.util.List<Team> teams)
-