Compare commits
2 Commits
dc0bbf1169
...
2f1cef4a2a
| Author | SHA1 | Date |
|---|---|---|
|
|
2f1cef4a2a | |
|
|
b2b743d3fe |
|
|
@ -109,7 +109,6 @@ func (_i *magazinesController) Show(c *fiber.Ctx) error {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
// Save Magazines
|
|
||||||
// @Summary Create Magazines
|
// @Summary Create Magazines
|
||||||
// @Description API for create Magazines
|
// @Description API for create Magazines
|
||||||
// @Tags Magazines
|
// @Tags Magazines
|
||||||
|
|
|
||||||
13
docs/docs.go
13
docs/docs.go
|
|
@ -6869,6 +6869,12 @@ const docTemplate = `{
|
||||||
"name": "isPublish",
|
"name": "isPublish",
|
||||||
"in": "query"
|
"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",
|
"type": "string",
|
||||||
"name": "source",
|
"name": "source",
|
||||||
|
|
@ -9908,6 +9914,11 @@ const docTemplate = `{
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"/cms-media/viewer/{path}": {
|
||||||
|
"get": {
|
||||||
|
"responses": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
"/custom-static-pages": {
|
"/custom-static-pages": {
|
||||||
"get": {
|
"get": {
|
||||||
"security": [
|
"security": [
|
||||||
|
|
@ -17124,7 +17135,6 @@ const docTemplate = `{
|
||||||
"request.ArticlesCreateRequest": {
|
"request.ArticlesCreateRequest": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"required": [
|
"required": [
|
||||||
"categoryIds",
|
|
||||||
"description",
|
"description",
|
||||||
"htmlDescription",
|
"htmlDescription",
|
||||||
"slug",
|
"slug",
|
||||||
|
|
@ -17183,7 +17193,6 @@ const docTemplate = `{
|
||||||
"request.ArticlesUpdateRequest": {
|
"request.ArticlesUpdateRequest": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"required": [
|
"required": [
|
||||||
"categoryIds",
|
|
||||||
"description",
|
"description",
|
||||||
"htmlDescription",
|
"htmlDescription",
|
||||||
"slug",
|
"slug",
|
||||||
|
|
|
||||||
|
|
@ -6858,6 +6858,12 @@
|
||||||
"name": "isPublish",
|
"name": "isPublish",
|
||||||
"in": "query"
|
"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",
|
"type": "string",
|
||||||
"name": "source",
|
"name": "source",
|
||||||
|
|
@ -9897,6 +9903,11 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"/cms-media/viewer/{path}": {
|
||||||
|
"get": {
|
||||||
|
"responses": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
"/custom-static-pages": {
|
"/custom-static-pages": {
|
||||||
"get": {
|
"get": {
|
||||||
"security": [
|
"security": [
|
||||||
|
|
@ -17113,7 +17124,6 @@
|
||||||
"request.ArticlesCreateRequest": {
|
"request.ArticlesCreateRequest": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"required": [
|
"required": [
|
||||||
"categoryIds",
|
|
||||||
"description",
|
"description",
|
||||||
"htmlDescription",
|
"htmlDescription",
|
||||||
"slug",
|
"slug",
|
||||||
|
|
@ -17172,7 +17182,6 @@
|
||||||
"request.ArticlesUpdateRequest": {
|
"request.ArticlesUpdateRequest": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"required": [
|
"required": [
|
||||||
"categoryIds",
|
|
||||||
"description",
|
"description",
|
||||||
"htmlDescription",
|
"htmlDescription",
|
||||||
"slug",
|
"slug",
|
||||||
|
|
|
||||||
|
|
@ -488,7 +488,6 @@ definitions:
|
||||||
typeId:
|
typeId:
|
||||||
type: integer
|
type: integer
|
||||||
required:
|
required:
|
||||||
- categoryIds
|
|
||||||
- description
|
- description
|
||||||
- htmlDescription
|
- htmlDescription
|
||||||
- slug
|
- slug
|
||||||
|
|
@ -529,7 +528,6 @@ definitions:
|
||||||
typeId:
|
typeId:
|
||||||
type: integer
|
type: integer
|
||||||
required:
|
required:
|
||||||
- categoryIds
|
|
||||||
- description
|
- description
|
||||||
- htmlDescription
|
- htmlDescription
|
||||||
- slug
|
- slug
|
||||||
|
|
@ -5840,6 +5838,11 @@ paths:
|
||||||
- in: query
|
- in: query
|
||||||
name: isPublish
|
name: isPublish
|
||||||
type: boolean
|
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
|
- in: query
|
||||||
name: source
|
name: source
|
||||||
type: string
|
type: string
|
||||||
|
|
@ -7793,6 +7796,9 @@ paths:
|
||||||
summary: update Clients
|
summary: update Clients
|
||||||
tags:
|
tags:
|
||||||
- Clients
|
- Clients
|
||||||
|
/cms-media/viewer/{path}:
|
||||||
|
get:
|
||||||
|
responses: {}
|
||||||
/custom-static-pages:
|
/custom-static-pages:
|
||||||
get:
|
get:
|
||||||
description: API for getting all CustomStaticPages
|
description: API for getting all CustomStaticPages
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue