This commit is contained in:
15
docs/docs.go
15
docs/docs.go
@@ -1307,6 +1307,11 @@ const docTemplate = `{
|
||||
},
|
||||
"/projects": {
|
||||
"get": {
|
||||
"security": [
|
||||
{
|
||||
"BearerAuth": []
|
||||
}
|
||||
],
|
||||
"description": "Search and filter projects with pagination",
|
||||
"consumes": [
|
||||
"application/json"
|
||||
@@ -1459,6 +1464,11 @@ const docTemplate = `{
|
||||
},
|
||||
"/projects/{id}": {
|
||||
"get": {
|
||||
"security": [
|
||||
{
|
||||
"BearerAuth": []
|
||||
}
|
||||
],
|
||||
"description": "Retrieve project details by specific ID",
|
||||
"consumes": [
|
||||
"application/json"
|
||||
@@ -1688,6 +1698,11 @@ const docTemplate = `{
|
||||
},
|
||||
"/projects/{id}/commits": {
|
||||
"get": {
|
||||
"security": [
|
||||
{
|
||||
"BearerAuth": []
|
||||
}
|
||||
],
|
||||
"description": "Retrieve all commits for a specific project",
|
||||
"consumes": [
|
||||
"application/json"
|
||||
|
||||
@@ -1300,6 +1300,11 @@
|
||||
},
|
||||
"/projects": {
|
||||
"get": {
|
||||
"security": [
|
||||
{
|
||||
"BearerAuth": []
|
||||
}
|
||||
],
|
||||
"description": "Search and filter projects with pagination",
|
||||
"consumes": [
|
||||
"application/json"
|
||||
@@ -1452,6 +1457,11 @@
|
||||
},
|
||||
"/projects/{id}": {
|
||||
"get": {
|
||||
"security": [
|
||||
{
|
||||
"BearerAuth": []
|
||||
}
|
||||
],
|
||||
"description": "Retrieve project details by specific ID",
|
||||
"consumes": [
|
||||
"application/json"
|
||||
@@ -1681,6 +1691,11 @@
|
||||
},
|
||||
"/projects/{id}/commits": {
|
||||
"get": {
|
||||
"security": [
|
||||
{
|
||||
"BearerAuth": []
|
||||
}
|
||||
],
|
||||
"description": "Retrieve all commits for a specific project",
|
||||
"consumes": [
|
||||
"application/json"
|
||||
|
||||
@@ -1246,6 +1246,8 @@ paths:
|
||||
description: Internal Server Error
|
||||
schema:
|
||||
$ref: '#/definitions/history-api_internal_dtos_response.CommonResponse'
|
||||
security:
|
||||
- BearerAuth: []
|
||||
summary: Search projects
|
||||
tags:
|
||||
- Projects
|
||||
@@ -1344,6 +1346,8 @@ paths:
|
||||
description: Internal Server Error
|
||||
schema:
|
||||
$ref: '#/definitions/history-api_internal_dtos_response.CommonResponse'
|
||||
security:
|
||||
- BearerAuth: []
|
||||
summary: Get project by ID
|
||||
tags:
|
||||
- Projects
|
||||
@@ -1455,6 +1459,8 @@ paths:
|
||||
description: Internal Server Error
|
||||
schema:
|
||||
$ref: '#/definitions/history-api_internal_dtos_response.CommonResponse'
|
||||
security:
|
||||
- BearerAuth: []
|
||||
summary: Get project commits
|
||||
tags:
|
||||
- Commits
|
||||
|
||||
Reference in New Issue
Block a user