Skip to content

Commit 146142b

Browse files
committed
prepare for 1.18.0
Signed-off-by: Andrew Thornton <[email protected]>
1 parent a9f17bc commit 146142b

File tree

204 files changed

+5004
-584
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

204 files changed

+5004
-584
lines changed

.project

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@
2222
</natures>
2323
<filteredResources>
2424
<filter>
25-
<id>1629303551481</id>
25+
<id>1673555194806</id>
2626
<name></name>
2727
<type>30</type>
2828
<matcher>
2929
<id>org.eclipse.core.resources.regexFilterMatcher</id>
30-
<arguments>node_modules|.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__</arguments>
30+
<arguments>node_modules|\.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__</arguments>
3131
</matcher>
3232
</filter>
3333
</filteredResources>

docs/ActivityPub.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
2+
# ActivityPub
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**context** | **String** | | [optional]
8+
9+
10+

docs/ActivitypubApi.md

+185
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,185 @@
1+
# ActivitypubApi
2+
3+
All URIs are relative to *http://localhost/api/v1*
4+
5+
Method | HTTP request | Description
6+
------------- | ------------- | -------------
7+
[**activitypubPerson**](ActivitypubApi.md#activitypubPerson) | **GET** /activitypub/user/{username} | Returns the Person actor for a user
8+
[**activitypubPersonInbox**](ActivitypubApi.md#activitypubPersonInbox) | **POST** /activitypub/user/{username}/inbox | Send to the inbox
9+
10+
11+
<a name="activitypubPerson"></a>
12+
# **activitypubPerson**
13+
> ActivityPub activitypubPerson(username)
14+
15+
Returns the Person actor for a user
16+
17+
### Example
18+
```java
19+
// Import classes:
20+
//import io.gitea.ApiClient;
21+
//import io.gitea.ApiException;
22+
//import io.gitea.Configuration;
23+
//import io.gitea.auth.*;
24+
//import io.gitea.api.ActivitypubApi;
25+
26+
ApiClient defaultClient = Configuration.getDefaultApiClient();
27+
28+
// Configure API key authorization: AccessToken
29+
ApiKeyAuth AccessToken = (ApiKeyAuth) defaultClient.getAuthentication("AccessToken");
30+
AccessToken.setApiKey("YOUR API KEY");
31+
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
32+
//AccessToken.setApiKeyPrefix("Token");
33+
34+
// Configure API key authorization: AuthorizationHeaderToken
35+
ApiKeyAuth AuthorizationHeaderToken = (ApiKeyAuth) defaultClient.getAuthentication("AuthorizationHeaderToken");
36+
AuthorizationHeaderToken.setApiKey("YOUR API KEY");
37+
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
38+
//AuthorizationHeaderToken.setApiKeyPrefix("Token");
39+
40+
// Configure HTTP basic authorization: BasicAuth
41+
HttpBasicAuth BasicAuth = (HttpBasicAuth) defaultClient.getAuthentication("BasicAuth");
42+
BasicAuth.setUsername("YOUR USERNAME");
43+
BasicAuth.setPassword("YOUR PASSWORD");
44+
45+
// Configure API key authorization: SudoHeader
46+
ApiKeyAuth SudoHeader = (ApiKeyAuth) defaultClient.getAuthentication("SudoHeader");
47+
SudoHeader.setApiKey("YOUR API KEY");
48+
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
49+
//SudoHeader.setApiKeyPrefix("Token");
50+
51+
// Configure API key authorization: SudoParam
52+
ApiKeyAuth SudoParam = (ApiKeyAuth) defaultClient.getAuthentication("SudoParam");
53+
SudoParam.setApiKey("YOUR API KEY");
54+
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
55+
//SudoParam.setApiKeyPrefix("Token");
56+
57+
// Configure API key authorization: TOTPHeader
58+
ApiKeyAuth TOTPHeader = (ApiKeyAuth) defaultClient.getAuthentication("TOTPHeader");
59+
TOTPHeader.setApiKey("YOUR API KEY");
60+
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
61+
//TOTPHeader.setApiKeyPrefix("Token");
62+
63+
// Configure API key authorization: Token
64+
ApiKeyAuth Token = (ApiKeyAuth) defaultClient.getAuthentication("Token");
65+
Token.setApiKey("YOUR API KEY");
66+
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
67+
//Token.setApiKeyPrefix("Token");
68+
69+
ActivitypubApi apiInstance = new ActivitypubApi();
70+
String username = "username_example"; // String | username of the user
71+
try {
72+
ActivityPub result = apiInstance.activitypubPerson(username);
73+
System.out.println(result);
74+
} catch (ApiException e) {
75+
System.err.println("Exception when calling ActivitypubApi#activitypubPerson");
76+
e.printStackTrace();
77+
}
78+
```
79+
80+
### Parameters
81+
82+
Name | Type | Description | Notes
83+
------------- | ------------- | ------------- | -------------
84+
**username** | **String**| username of the user |
85+
86+
### Return type
87+
88+
[**ActivityPub**](ActivityPub.md)
89+
90+
### Authorization
91+
92+
[AccessToken](../README.md#AccessToken), [AuthorizationHeaderToken](../README.md#AuthorizationHeaderToken), [BasicAuth](../README.md#BasicAuth), [SudoHeader](../README.md#SudoHeader), [SudoParam](../README.md#SudoParam), [TOTPHeader](../README.md#TOTPHeader), [Token](../README.md#Token)
93+
94+
### HTTP request headers
95+
96+
- **Content-Type**: application/json, text/plain
97+
- **Accept**: application/json
98+
99+
<a name="activitypubPersonInbox"></a>
100+
# **activitypubPersonInbox**
101+
> activitypubPersonInbox(username)
102+
103+
Send to the inbox
104+
105+
### Example
106+
```java
107+
// Import classes:
108+
//import io.gitea.ApiClient;
109+
//import io.gitea.ApiException;
110+
//import io.gitea.Configuration;
111+
//import io.gitea.auth.*;
112+
//import io.gitea.api.ActivitypubApi;
113+
114+
ApiClient defaultClient = Configuration.getDefaultApiClient();
115+
116+
// Configure API key authorization: AccessToken
117+
ApiKeyAuth AccessToken = (ApiKeyAuth) defaultClient.getAuthentication("AccessToken");
118+
AccessToken.setApiKey("YOUR API KEY");
119+
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
120+
//AccessToken.setApiKeyPrefix("Token");
121+
122+
// Configure API key authorization: AuthorizationHeaderToken
123+
ApiKeyAuth AuthorizationHeaderToken = (ApiKeyAuth) defaultClient.getAuthentication("AuthorizationHeaderToken");
124+
AuthorizationHeaderToken.setApiKey("YOUR API KEY");
125+
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
126+
//AuthorizationHeaderToken.setApiKeyPrefix("Token");
127+
128+
// Configure HTTP basic authorization: BasicAuth
129+
HttpBasicAuth BasicAuth = (HttpBasicAuth) defaultClient.getAuthentication("BasicAuth");
130+
BasicAuth.setUsername("YOUR USERNAME");
131+
BasicAuth.setPassword("YOUR PASSWORD");
132+
133+
// Configure API key authorization: SudoHeader
134+
ApiKeyAuth SudoHeader = (ApiKeyAuth) defaultClient.getAuthentication("SudoHeader");
135+
SudoHeader.setApiKey("YOUR API KEY");
136+
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
137+
//SudoHeader.setApiKeyPrefix("Token");
138+
139+
// Configure API key authorization: SudoParam
140+
ApiKeyAuth SudoParam = (ApiKeyAuth) defaultClient.getAuthentication("SudoParam");
141+
SudoParam.setApiKey("YOUR API KEY");
142+
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
143+
//SudoParam.setApiKeyPrefix("Token");
144+
145+
// Configure API key authorization: TOTPHeader
146+
ApiKeyAuth TOTPHeader = (ApiKeyAuth) defaultClient.getAuthentication("TOTPHeader");
147+
TOTPHeader.setApiKey("YOUR API KEY");
148+
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
149+
//TOTPHeader.setApiKeyPrefix("Token");
150+
151+
// Configure API key authorization: Token
152+
ApiKeyAuth Token = (ApiKeyAuth) defaultClient.getAuthentication("Token");
153+
Token.setApiKey("YOUR API KEY");
154+
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
155+
//Token.setApiKeyPrefix("Token");
156+
157+
ActivitypubApi apiInstance = new ActivitypubApi();
158+
String username = "username_example"; // String | username of the user
159+
try {
160+
apiInstance.activitypubPersonInbox(username);
161+
} catch (ApiException e) {
162+
System.err.println("Exception when calling ActivitypubApi#activitypubPersonInbox");
163+
e.printStackTrace();
164+
}
165+
```
166+
167+
### Parameters
168+
169+
Name | Type | Description | Notes
170+
------------- | ------------- | ------------- | -------------
171+
**username** | **String**| username of the user |
172+
173+
### Return type
174+
175+
null (empty response body)
176+
177+
### Authorization
178+
179+
[AccessToken](../README.md#AccessToken), [AuthorizationHeaderToken](../README.md#AuthorizationHeaderToken), [BasicAuth](../README.md#BasicAuth), [SudoHeader](../README.md#SudoHeader), [SudoParam](../README.md#SudoParam), [TOTPHeader](../README.md#TOTPHeader), [Token](../README.md#Token)
180+
181+
### HTTP request headers
182+
183+
- **Content-Type**: application/json, text/plain
184+
- **Accept**: application/json
185+

docs/ChangedFile.md

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
2+
# ChangedFile
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**additions** | **Long** | | [optional]
8+
**changes** | **Long** | | [optional]
9+
**contentsUrl** | **String** | | [optional]
10+
**deletions** | **Long** | | [optional]
11+
**filename** | **String** | | [optional]
12+
**htmlUrl** | **String** | | [optional]
13+
**previousFilename** | **String** | | [optional]
14+
**rawUrl** | **String** | | [optional]
15+
**status** | **String** | | [optional]
16+
17+
18+

docs/ContentsResponse.md

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Name | Type | Description | Notes
1010
**encoding** | **String** | &#x60;encoding&#x60; is populated when &#x60;type&#x60; is &#x60;file&#x60;, otherwise null | [optional]
1111
**gitUrl** | **String** | | [optional]
1212
**htmlUrl** | **String** | | [optional]
13+
**lastCommitSha** | **String** | | [optional]
1314
**name** | **String** | | [optional]
1415
**path** | **String** | | [optional]
1516
**sha** | **String** | | [optional]

docs/CreateOAuth2ApplicationOptions.md

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
## Properties
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7+
**confidentialClient** | **Boolean** | | [optional]
78
**name** | **String** | | [optional]
89
**redirectUris** | **List&lt;String&gt;** | | [optional]
910

docs/CreatePushMirrorOption.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
2+
# CreatePushMirrorOption
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**interval** | **String** | | [optional]
8+
**remoteAddress** | **String** | | [optional]
9+
**remotePassword** | **String** | | [optional]
10+
**remoteUsername** | **String** | | [optional]
11+
12+
13+

docs/DismissPullReviewOptions.md

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**message** | **String** | | [optional]
8+
**priors** | **Boolean** | | [optional]
89

910

1011

docs/EditRepoOption.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@
44
## Properties
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**allowManualMerge** | **Boolean** | either &#x60;true&#x60; to allow mark pr as merged manually, or &#x60;false&#x60; to prevent it. &#x60;has_pull_requests&#x60; must be &#x60;true&#x60;. | [optional]
8-
**allowMergeCommits** | **Boolean** | either &#x60;true&#x60; to allow merging pull requests with a merge commit, or &#x60;false&#x60; to prevent merging pull requests with merge commits. &#x60;has_pull_requests&#x60; must be &#x60;true&#x60;. | [optional]
9-
**allowRebase** | **Boolean** | either &#x60;true&#x60; to allow rebase-merging pull requests, or &#x60;false&#x60; to prevent rebase-merging. &#x60;has_pull_requests&#x60; must be &#x60;true&#x60;. | [optional]
10-
**allowRebaseExplicit** | **Boolean** | either &#x60;true&#x60; to allow rebase with explicit merge commits (--no-ff), or &#x60;false&#x60; to prevent rebase with explicit merge commits. &#x60;has_pull_requests&#x60; must be &#x60;true&#x60;. | [optional]
11-
**allowRebaseUpdate** | **Boolean** | either &#x60;true&#x60; to allow updating pull request branch by rebase, or &#x60;false&#x60; to prevent it. &#x60;has_pull_requests&#x60; must be &#x60;true&#x60;. | [optional]
12-
**allowSquashMerge** | **Boolean** | either &#x60;true&#x60; to allow squash-merging pull requests, or &#x60;false&#x60; to prevent squash-merging. &#x60;has_pull_requests&#x60; must be &#x60;true&#x60;. | [optional]
7+
**allowManualMerge** | **Boolean** | either &#x60;true&#x60; to allow mark pr as merged manually, or &#x60;false&#x60; to prevent it. | [optional]
8+
**allowMergeCommits** | **Boolean** | either &#x60;true&#x60; to allow merging pull requests with a merge commit, or &#x60;false&#x60; to prevent merging pull requests with merge commits. | [optional]
9+
**allowRebase** | **Boolean** | either &#x60;true&#x60; to allow rebase-merging pull requests, or &#x60;false&#x60; to prevent rebase-merging. | [optional]
10+
**allowRebaseExplicit** | **Boolean** | either &#x60;true&#x60; to allow rebase with explicit merge commits (--no-ff), or &#x60;false&#x60; to prevent rebase with explicit merge commits. | [optional]
11+
**allowRebaseUpdate** | **Boolean** | either &#x60;true&#x60; to allow updating pull request branch by rebase, or &#x60;false&#x60; to prevent it. | [optional]
12+
**allowSquashMerge** | **Boolean** | either &#x60;true&#x60; to allow squash-merging pull requests, or &#x60;false&#x60; to prevent squash-merging. | [optional]
1313
**archived** | **Boolean** | set to &#x60;true&#x60; to archive this repository. | [optional]
14-
**autodetectManualMerge** | **Boolean** | either &#x60;true&#x60; to enable AutodetectManualMerge, or &#x60;false&#x60; to prevent it. &#x60;has_pull_requests&#x60; must be &#x60;true&#x60;, Note: In some special cases, misjudgments can occur. | [optional]
14+
**autodetectManualMerge** | **Boolean** | either &#x60;true&#x60; to enable AutodetectManualMerge, or &#x60;false&#x60; to prevent it. Note: In some special cases, misjudgments can occur. | [optional]
1515
**defaultBranch** | **String** | sets the default branch for this repository. | [optional]
1616
**defaultDeleteBranchAfterMerge** | **Boolean** | set to &#x60;true&#x60; to delete pr branch after merge by default | [optional]
17-
**defaultMergeStyle** | **String** | set to a merge style to be used by this repository: \&quot;merge\&quot;, \&quot;rebase\&quot;, \&quot;rebase-merge\&quot;, or \&quot;squash\&quot;. &#x60;has_pull_requests&#x60; must be &#x60;true&#x60;. | [optional]
17+
**defaultMergeStyle** | **String** | set to a merge style to be used by this repository: \&quot;merge\&quot;, \&quot;rebase\&quot;, \&quot;rebase-merge\&quot;, or \&quot;squash\&quot;. | [optional]
1818
**description** | **String** | a short description of the repository. | [optional]
1919
**enablePrune** | **Boolean** | enable prune - remove obsolete remote-tracking references | [optional]
2020
**externalTracker** | [**ExternalTracker**](ExternalTracker.md) | | [optional]
@@ -23,7 +23,7 @@ Name | Type | Description | Notes
2323
**hasProjects** | **Boolean** | either &#x60;true&#x60; to enable project unit, or &#x60;false&#x60; to disable them. | [optional]
2424
**hasPullRequests** | **Boolean** | either &#x60;true&#x60; to allow pull requests, or &#x60;false&#x60; to prevent pull request. | [optional]
2525
**hasWiki** | **Boolean** | either &#x60;true&#x60; to enable the wiki for this repository or &#x60;false&#x60; to disable it. | [optional]
26-
**ignoreWhitespaceConflicts** | **Boolean** | either &#x60;true&#x60; to ignore whitespace for conflicts, or &#x60;false&#x60; to not ignore whitespace. &#x60;has_pull_requests&#x60; must be &#x60;true&#x60;. | [optional]
26+
**ignoreWhitespaceConflicts** | **Boolean** | either &#x60;true&#x60; to ignore whitespace for conflicts, or &#x60;false&#x60; to not ignore whitespace. | [optional]
2727
**internalTracker** | [**InternalTracker**](InternalTracker.md) | | [optional]
2828
**mirrorInterval** | **String** | set to a string like &#x60;8h30m0s&#x60; to set the mirror interval time | [optional]
2929
**name** | **String** | name of the repository | [optional]

docs/ExternalTracker.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**externalTrackerFormat** | **String** | External Issue Tracker URL Format. Use the placeholders {user}, {repo} and {index} for the username, repository name and issue index. | [optional]
8-
**externalTrackerStyle** | **String** | External Issue Tracker Number Format, either &#x60;numeric&#x60; or &#x60;alphanumeric&#x60; | [optional]
8+
**externalTrackerRegexpPattern** | **String** | External Issue Tracker issue regular expression | [optional]
9+
**externalTrackerStyle** | **String** | External Issue Tracker Number Format, either &#x60;numeric&#x60;, &#x60;alphanumeric&#x60;, or &#x60;regexp&#x60; | [optional]
910
**externalTrackerUrl** | **String** | URL of external issue tracker. | [optional]
1011

1112

docs/IssueApi.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3279,7 +3279,7 @@ Token.setApiKey("YOUR API KEY");
32793279
IssueApi apiInstance = new IssueApi();
32803280
String owner = "owner_example"; // String | owner of the repo
32813281
String repo = "repo_example"; // String | name of the repo
3282-
String state = "state_example"; // String | Milestone state, Recognised values are open, closed and all. Defaults to \"open\"
3282+
String state = "state_example"; // String | Milestone state, Recognized values are open, closed and all. Defaults to \"open\"
32833283
String name = "name_example"; // String | filter by milestone name
32843284
Integer page = 56; // Integer | page number of results to return (1-based)
32853285
Integer limit = 56; // Integer | page size of results
@@ -3298,7 +3298,7 @@ Name | Type | Description | Notes
32983298
------------- | ------------- | ------------- | -------------
32993299
**owner** | **String**| owner of the repo |
33003300
**repo** | **String**| name of the repo |
3301-
**state** | **String**| Milestone state, Recognised values are open, closed and all. Defaults to \&quot;open\&quot; | [optional]
3301+
**state** | **String**| Milestone state, Recognized values are open, closed and all. Defaults to \&quot;open\&quot; | [optional]
33023302
**name** | **String**| filter by milestone name | [optional]
33033303
**page** | **Integer**| page number of results to return (1-based) | [optional]
33043304
**limit** | **Integer**| page size of results | [optional]

docs/IssueFormField.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
2+
# IssueFormField
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**attributes** | **Map&lt;String, Object&gt;** | | [optional]
8+
**id** | **String** | | [optional]
9+
**type** | **String** | | [optional]
10+
**validations** | **Map&lt;String, Object&gt;** | | [optional]
11+
12+
13+

docs/IssueTemplate.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**about** | **String** | | [optional]
8+
**body** | [**List&lt;IssueFormField&gt;**](IssueFormField.md) | | [optional]
89
**content** | **String** | | [optional]
910
**fileName** | **String** | | [optional]
10-
**labels** | **List&lt;String&gt;** | | [optional]
11+
**labels** | [**IssueTemplateLabels**](IssueTemplateLabels.md) | | [optional]
1112
**name** | **String** | | [optional]
1213
**ref** | **String** | | [optional]
1314
**title** | **String** | | [optional]

docs/IssueTemplateLabels.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
2+
# IssueTemplateLabels
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
8+
9+

docs/OAuth2Application.md

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**clientId** | **String** | | [optional]
88
**clientSecret** | **String** | | [optional]
9+
**confidentialClient** | **Boolean** | | [optional]
910
**created** | [**OffsetDateTime**](OffsetDateTime.md) | | [optional]
1011
**id** | **Long** | | [optional]
1112
**name** | **String** | | [optional]

docs/Organization.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@ Name | Type | Description | Notes
99
**fullName** | **String** | | [optional]
1010
**id** | **Long** | | [optional]
1111
**location** | **String** | | [optional]
12+
**name** | **String** | | [optional]
1213
**repoAdminChangeTeamAccess** | **Boolean** | | [optional]
13-
**username** | **String** | | [optional]
14+
**username** | **String** | deprecated | [optional]
1415
**visibility** | **String** | | [optional]
1516
**website** | **String** | | [optional]
1617

docs/OrganizationApi.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Method | HTTP request | Description
1010
[**orgAddTeamRepository**](OrganizationApi.md#orgAddTeamRepository) | **PUT** /teams/{id}/repos/{org}/{repo} | Add a repository to a team
1111
[**orgConcealMember**](OrganizationApi.md#orgConcealMember) | **DELETE** /orgs/{org}/public_members/{username} | Conceal a user&#39;s membership
1212
[**orgCreate**](OrganizationApi.md#orgCreate) | **POST** /orgs | Create an organization
13-
[**orgCreateHook**](OrganizationApi.md#orgCreateHook) | **POST** /orgs/{org}/hooks/ | Create a hook
13+
[**orgCreateHook**](OrganizationApi.md#orgCreateHook) | **POST** /orgs/{org}/hooks | Create a hook
1414
[**orgCreateLabel**](OrganizationApi.md#orgCreateLabel) | **POST** /orgs/{org}/labels | Create a label for an organization
1515
[**orgCreateTeam**](OrganizationApi.md#orgCreateTeam) | **POST** /orgs/{org}/teams | Create a team
1616
[**orgDelete**](OrganizationApi.md#orgDelete) | **DELETE** /orgs/{org} | Delete an organization

0 commit comments

Comments
 (0)