add search file...

This commit is contained in:
hcxm 2021-01-25 10:35:21 +08:00
parent 8d214da2fc
commit c019c6408a
1 changed files with 97 additions and 2 deletions

View File

@ -21,7 +21,7 @@
},
"version": "1.1.1"
},
"basePath": "{{AppSubUrl}}/api/v1",
"basePath": "/api/v1",
"paths": {
"/admin/orgs": {
"get": {
@ -2961,6 +2961,48 @@
}
}
},
"/repos/{owner}/{repo}/count": {
"get": {
"produces": [
"application/json"
],
"tags": [
"repository"
],
"summary": "Get commit quantity by branch",
"operationId": "Count",
"parameters": [
{
"type": "string",
"description": "owner of the repo",
"name": "owner",
"in": "path",
"required": true
},
{
"type": "string",
"description": "name of the repo",
"name": "repo",
"in": "path",
"required": true
},
{
"type": "string",
"description": "The name of the commit/branch/tag. Default the repositorys default branch (usually master)",
"name": "ref",
"in": "query"
}
],
"responses": {
"200": {
"$ref": "#/responses/"
},
"404": {
"$ref": "#/responses/notFound"
}
}
}
},
"/repos/{owner}/{repo}/editorconfig/{filepath}": {
"get": {
"produces": [
@ -3004,6 +3046,54 @@
}
}
},
"/repos/{owner}/{repo}/find": {
"get": {
"produces": [
"application/json"
],
"tags": [
"repository"
],
"summary": "The search file contains subdirectories, which is a custom interface *****",
"operationId": "find",
"parameters": [
{
"type": "string",
"description": "owner of the repo",
"name": "owner",
"in": "path",
"required": true
},
{
"type": "string",
"description": "name of the repo",
"name": "repo",
"in": "path",
"required": true
},
{
"type": "string",
"description": "The name of the commit/branch/tag. Default the repositorys default branch (usually master)",
"name": "ref",
"in": "query"
},
{
"type": "string",
"description": "Search keywords",
"name": "q",
"in": "query"
}
],
"responses": {
"200": {
"$ref": "#/responses/[]*SearchFileItem"
},
"404": {
"$ref": "#/responses/notFound"
}
}
}
},
"/repos/{owner}/{repo}/forks": {
"get": {
"produces": [
@ -7336,7 +7426,7 @@
"tags": [
"repository"
],
"summary": "Get the content of the readme.* file, which is a custom interface",
"summary": "Get the content of the readme.* file, which is a custom interface ****",
"operationId": "readme",
"parameters": [
{
@ -11070,6 +11160,11 @@
"_links": {
"$ref": "#/definitions/FileLinksResponse"
},
"commit_count": {
"type": "integer",
"format": "int64",
"x-go-name": "CommitCount"
},
"content": {
"description": "`content` is populated when `type` is `file`, otherwise null",
"type": "string",