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
|
// @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,12 +6869,6 @@ 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",
|
||||||
|
|
@ -9914,11 +9908,6 @@ const docTemplate = `{
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"/cms-media/viewer/{path}": {
|
|
||||||
"get": {
|
|
||||||
"responses": {}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"/custom-static-pages": {
|
"/custom-static-pages": {
|
||||||
"get": {
|
"get": {
|
||||||
"security": [
|
"security": [
|
||||||
|
|
@ -17135,6 +17124,7 @@ const docTemplate = `{
|
||||||
"request.ArticlesCreateRequest": {
|
"request.ArticlesCreateRequest": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"required": [
|
"required": [
|
||||||
|
"categoryIds",
|
||||||
"description",
|
"description",
|
||||||
"htmlDescription",
|
"htmlDescription",
|
||||||
"slug",
|
"slug",
|
||||||
|
|
@ -17193,6 +17183,7 @@ const docTemplate = `{
|
||||||
"request.ArticlesUpdateRequest": {
|
"request.ArticlesUpdateRequest": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"required": [
|
"required": [
|
||||||
|
"categoryIds",
|
||||||
"description",
|
"description",
|
||||||
"htmlDescription",
|
"htmlDescription",
|
||||||
"slug",
|
"slug",
|
||||||
|
|
|
||||||
|
|
@ -6858,12 +6858,6 @@
|
||||||
"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",
|
||||||
|
|
@ -9903,11 +9897,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"/cms-media/viewer/{path}": {
|
|
||||||
"get": {
|
|
||||||
"responses": {}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"/custom-static-pages": {
|
"/custom-static-pages": {
|
||||||
"get": {
|
"get": {
|
||||||
"security": [
|
"security": [
|
||||||
|
|
@ -17124,6 +17113,7 @@
|
||||||
"request.ArticlesCreateRequest": {
|
"request.ArticlesCreateRequest": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"required": [
|
"required": [
|
||||||
|
"categoryIds",
|
||||||
"description",
|
"description",
|
||||||
"htmlDescription",
|
"htmlDescription",
|
||||||
"slug",
|
"slug",
|
||||||
|
|
@ -17182,6 +17172,7 @@
|
||||||
"request.ArticlesUpdateRequest": {
|
"request.ArticlesUpdateRequest": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"required": [
|
"required": [
|
||||||
|
"categoryIds",
|
||||||
"description",
|
"description",
|
||||||
"htmlDescription",
|
"htmlDescription",
|
||||||
"slug",
|
"slug",
|
||||||
|
|
|
||||||
|
|
@ -488,6 +488,7 @@ definitions:
|
||||||
typeId:
|
typeId:
|
||||||
type: integer
|
type: integer
|
||||||
required:
|
required:
|
||||||
|
- categoryIds
|
||||||
- description
|
- description
|
||||||
- htmlDescription
|
- htmlDescription
|
||||||
- slug
|
- slug
|
||||||
|
|
@ -528,6 +529,7 @@ definitions:
|
||||||
typeId:
|
typeId:
|
||||||
type: integer
|
type: integer
|
||||||
required:
|
required:
|
||||||
|
- categoryIds
|
||||||
- description
|
- description
|
||||||
- htmlDescription
|
- htmlDescription
|
||||||
- slug
|
- slug
|
||||||
|
|
@ -5838,11 +5840,6 @@ 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
|
||||||
|
|
@ -7796,9 +7793,6 @@ 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