-
Methods 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 team
|
ApiResponse<Team> |
OrganizationApi.orgEditTeamWithHttpInfo(java.lang.Integer id,
EditTeamOption body) |
Edit a team
|
ApiResponse<Team> |
OrganizationApi.orgGetTeamWithHttpInfo(java.lang.Long id) |
Get a team
|
java.util.List<Team> |
OrganizationApi.orgListTeams(java.lang.String org,
java.lang.Integer page,
java.lang.Integer limit) |
List an organization's teams
|
ApiResponse<java.util.List<Team>> |
OrganizationApi.orgListTeamsWithHttpInfo(java.lang.String org,
java.lang.Integer page,
java.lang.Integer limit) |
List an organization's teams
|
ApiResponse<Team> |
RepositoryApi.repoCheckTeamWithHttpInfo(java.lang.String owner,
java.lang.String repo,
java.lang.String team) |
Check if a team is assigned to a repository
|
java.util.List<Team> |
RepositoryApi.repoListTeams(java.lang.String owner,
java.lang.String repo) |
List a repository's teams
|
ApiResponse<java.util.List<Team>> |
RepositoryApi.repoListTeamsWithHttpInfo(java.lang.String owner,
java.lang.String repo) |
List a repository's teams
|
java.util.List<Team> |
UserApi.userListTeams(java.lang.Integer page,
java.lang.Integer limit) |
List all the teams a user belongs to
|
ApiResponse<java.util.List<Team>> |
UserApi.userListTeamsWithHttpInfo(java.lang.Integer page,
java.lang.Integer limit) |
List all the teams a user belongs to
|
Method parameters in io.gitea.api with type arguments of type Team
| Modifier and Type |
Method |
Description |
com.squareup.okhttp.Call |
OrganizationApi.orgCreateTeamAsync(java.lang.String org,
CreateTeamOption body,
ApiCallback<Team> callback) |
Create a team (asynchronously)
|
com.squareup.okhttp.Call |
OrganizationApi.orgEditTeamAsync(java.lang.Integer id,
EditTeamOption body,
ApiCallback<Team> callback) |
Edit a team (asynchronously)
|
com.squareup.okhttp.Call |
OrganizationApi.orgGetTeamAsync(java.lang.Long id,
ApiCallback<Team> callback) |
Get a team (asynchronously)
|
com.squareup.okhttp.Call |
OrganizationApi.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.Call |
RepositoryApi.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.Call |
RepositoryApi.repoListTeamsAsync(java.lang.String owner,
java.lang.String repo,
ApiCallback<java.util.List<Team>> callback) |
List a repository's teams (asynchronously)
|
com.squareup.okhttp.Call |
UserApi.userListTeamsAsync(java.lang.Integer page,
java.lang.Integer limit,
ApiCallback<java.util.List<Team>> callback) |
List all the teams a user belongs to (asynchronously)
|
-
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 data
|