Compare commits
No commits in common. "2f1cef4a2a74ad80cd05497f0b7535ce6100fa26" and "dc0bbf116902773991dfb44649c3eaf5ecc56793" have entirely different histories.
2f1cef4a2a
...
dc0bbf1169
|
|
@ -109,6 +109,7 @@ func (_i *magazinesController) Show(c *fiber.Ctx) error {
|
|||
})
|
||||
}
|
||||
|
||||
// Save Magazines
|
||||
// @Summary Create Magazines
|
||||
// @Description API for create Magazines
|
||||
// @Tags Magazines
|
||||
|
|
|
|||
13
docs/docs.go
13
docs/docs.go
|
|
@ -6869,12 +6869,6 @@ const docTemplate = `{
|
|||
"name": "isPublish",
|
||||
"in": "query"
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"description": "myContentMode: \"own\" = current user's articles (any level); \"approver\" = non-draft from contributors (user_role_id 3) for approver history",
|
||||
"name": "myContentMode",
|
||||
"in": "query"
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"name": "source",
|
||||
|
|
@ -9914,11 +9908,6 @@ const docTemplate = `{
|
|||
}
|
||||
}
|
||||
},
|
||||
"/cms-media/viewer/{path}": {
|
||||
"get": {
|
||||
"responses": {}
|
||||
}
|
||||
},
|
||||
"/custom-static-pages": {
|
||||
"get": {
|
||||
"security": [
|
||||
|
|
@ -17135,6 +17124,7 @@ const docTemplate = `{
|
|||
"request.ArticlesCreateRequest": {
|
||||
"type": "object",
|
||||
"required": [
|
||||
"categoryIds",
|
||||
"description",
|
||||
"htmlDescription",
|
||||
"slug",
|
||||
|
|
@ -17193,6 +17183,7 @@ const docTemplate = `{
|
|||
"request.ArticlesUpdateRequest": {
|
||||
"type": "object",
|
||||
"required": [
|
||||
"categoryIds",
|
||||
"description",
|
||||
"htmlDescription",
|
||||
"slug",
|
||||
|
|
|
|||
|
|
@ -6858,12 +6858,6 @@
|
|||
"name": "isPublish",
|
||||
"in": "query"
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"description": "myContentMode: \"own\" = current user's articles (any level); \"approver\" = non-draft from contributors (user_role_id 3) for approver history",
|
||||
"name": "myContentMode",
|
||||
"in": "query"
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"name": "source",
|
||||
|
|
@ -9903,11 +9897,6 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"/cms-media/viewer/{path}": {
|
||||
"get": {
|
||||
"responses": {}
|
||||
}
|
||||
},
|
||||
"/custom-static-pages": {
|
||||
"get": {
|
||||
"security": [
|
||||
|
|
@ -17124,6 +17113,7 @@
|
|||
"request.ArticlesCreateRequest": {
|
||||
"type": "object",
|
||||
"required": [
|
||||
"categoryIds",
|
||||
"description",
|
||||
"htmlDescription",
|
||||
"slug",
|
||||
|
|
@ -17182,6 +17172,7 @@
|
|||
"request.ArticlesUpdateRequest": {
|
||||
"type": "object",
|
||||
"required": [
|
||||
"categoryIds",
|
||||
"description",
|
||||
"htmlDescription",
|
||||
"slug",
|
||||
|
|
|
|||
|
|
@ -488,6 +488,7 @@ definitions:
|
|||
typeId:
|
||||
type: integer
|
||||
required:
|
||||
- categoryIds
|
||||
- description
|
||||
- htmlDescription
|
||||
- slug
|
||||
|
|
@ -528,6 +529,7 @@ definitions:
|
|||
typeId:
|
||||
type: integer
|
||||
required:
|
||||
- categoryIds
|
||||
- description
|
||||
- htmlDescription
|
||||
- slug
|
||||
|
|
@ -5838,11 +5840,6 @@ paths:
|
|||
- in: query
|
||||
name: isPublish
|
||||
type: boolean
|
||||
- description: 'myContentMode: "own" = current user''s articles (any level);
|
||||
"approver" = non-draft from contributors (user_role_id 3) for approver history'
|
||||
in: query
|
||||
name: myContentMode
|
||||
type: string
|
||||
- in: query
|
||||
name: source
|
||||
type: string
|
||||
|
|
@ -7796,9 +7793,6 @@ paths:
|
|||
summary: update Clients
|
||||
tags:
|
||||
- Clients
|
||||
/cms-media/viewer/{path}:
|
||||
get:
|
||||
responses: {}
|
||||
/custom-static-pages:
|
||||
get:
|
||||
description: API for getting all CustomStaticPages
|
||||
|
|
|
|||
Loading…
Reference in New Issue