* Fix #2800. Add missing Swagger docs * Add note that timestamps are in miliseconds * Fix merge, update docs.
This commit is contained in:
parent
554453c9e6
commit
154c344077
13 changed files with 3458 additions and 147 deletions
|
@ -197,6 +197,23 @@ func (a *API) requireCSRFToken(next http.Handler) http.Handler {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (a *API) getClientConfig(w http.ResponseWriter, r *http.Request) {
|
func (a *API) getClientConfig(w http.ResponseWriter, r *http.Request) {
|
||||||
|
// swagger:operation GET /clientConfig getClientConfig
|
||||||
|
//
|
||||||
|
// Returns the client configuration
|
||||||
|
//
|
||||||
|
// ---
|
||||||
|
// produces:
|
||||||
|
// - application/json
|
||||||
|
// responses:
|
||||||
|
// '200':
|
||||||
|
// description: success
|
||||||
|
// schema:
|
||||||
|
// "$ref": "#/definitions/ClientConfig"
|
||||||
|
// default:
|
||||||
|
// description: internal error
|
||||||
|
// schema:
|
||||||
|
// "$ref": "#/definitions/ErrorResponse"
|
||||||
|
|
||||||
clientConfig := a.app.GetClientConfig()
|
clientConfig := a.app.GetClientConfig()
|
||||||
|
|
||||||
configData, err := json.Marshal(clientConfig)
|
configData, err := json.Marshal(clientConfig)
|
||||||
|
@ -368,6 +385,37 @@ func (a *API) handleGetBlocks(w http.ResponseWriter, r *http.Request) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (a *API) handleCreateCategory(w http.ResponseWriter, r *http.Request) {
|
func (a *API) handleCreateCategory(w http.ResponseWriter, r *http.Request) {
|
||||||
|
// swagger:operation POST /teams/{teamID}/categories createCategory
|
||||||
|
//
|
||||||
|
// Create a category for boards
|
||||||
|
//
|
||||||
|
// ---
|
||||||
|
// produces:
|
||||||
|
// - application/json
|
||||||
|
// parameters:
|
||||||
|
// - name: teamID
|
||||||
|
// in: path
|
||||||
|
// description: Team ID
|
||||||
|
// required: true
|
||||||
|
// type: string
|
||||||
|
// - name: Body
|
||||||
|
// in: body
|
||||||
|
// description: category to create
|
||||||
|
// required: true
|
||||||
|
// schema:
|
||||||
|
// "$ref": "#/definitions/Category"
|
||||||
|
// security:
|
||||||
|
// - BearerAuth: []
|
||||||
|
// responses:
|
||||||
|
// '200':
|
||||||
|
// description: success
|
||||||
|
// schema:
|
||||||
|
// "$ref": "#/definitions/Category"
|
||||||
|
// default:
|
||||||
|
// description: internal error
|
||||||
|
// schema:
|
||||||
|
// "$ref": "#/definitions/ErrorResponse"
|
||||||
|
|
||||||
requestBody, err := ioutil.ReadAll(r.Body)
|
requestBody, err := ioutil.ReadAll(r.Body)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
a.errorResponse(w, r.URL.Path, http.StatusInternalServerError, "", err)
|
a.errorResponse(w, r.URL.Path, http.StatusInternalServerError, "", err)
|
||||||
|
@ -432,6 +480,42 @@ func (a *API) handleCreateCategory(w http.ResponseWriter, r *http.Request) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (a *API) handleUpdateCategory(w http.ResponseWriter, r *http.Request) {
|
func (a *API) handleUpdateCategory(w http.ResponseWriter, r *http.Request) {
|
||||||
|
// swagger:operation PUT /teams/{teamID}/categories/{categoryID} updateCategory
|
||||||
|
//
|
||||||
|
// Create a category for boards
|
||||||
|
//
|
||||||
|
// ---
|
||||||
|
// produces:
|
||||||
|
// - application/json
|
||||||
|
// parameters:
|
||||||
|
// - name: teamID
|
||||||
|
// in: path
|
||||||
|
// description: Team ID
|
||||||
|
// required: true
|
||||||
|
// type: string
|
||||||
|
// - name: categoryID
|
||||||
|
// in: path
|
||||||
|
// description: Category ID
|
||||||
|
// required: true
|
||||||
|
// type: string
|
||||||
|
// - name: Body
|
||||||
|
// in: body
|
||||||
|
// description: category to update
|
||||||
|
// required: true
|
||||||
|
// schema:
|
||||||
|
// "$ref": "#/definitions/Category"
|
||||||
|
// security:
|
||||||
|
// - BearerAuth: []
|
||||||
|
// responses:
|
||||||
|
// '200':
|
||||||
|
// description: success
|
||||||
|
// schema:
|
||||||
|
// "$ref": "#/definitions/Category"
|
||||||
|
// default:
|
||||||
|
// description: internal error
|
||||||
|
// schema:
|
||||||
|
// "$ref": "#/definitions/ErrorResponse"
|
||||||
|
|
||||||
vars := mux.Vars(r)
|
vars := mux.Vars(r)
|
||||||
categoryID := vars["categoryID"]
|
categoryID := vars["categoryID"]
|
||||||
|
|
||||||
|
@ -503,6 +587,34 @@ func (a *API) handleUpdateCategory(w http.ResponseWriter, r *http.Request) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (a *API) handleDeleteCategory(w http.ResponseWriter, r *http.Request) {
|
func (a *API) handleDeleteCategory(w http.ResponseWriter, r *http.Request) {
|
||||||
|
// swagger:operation DELETE /teams/{teamID}/categories/{categoryID} deleteCategory
|
||||||
|
//
|
||||||
|
// Delete a category
|
||||||
|
//
|
||||||
|
// ---
|
||||||
|
// produces:
|
||||||
|
// - application/json
|
||||||
|
// parameters:
|
||||||
|
// - name: teamID
|
||||||
|
// in: path
|
||||||
|
// description: Team ID
|
||||||
|
// required: true
|
||||||
|
// type: string
|
||||||
|
// - name: categoryID
|
||||||
|
// in: path
|
||||||
|
// description: Category ID
|
||||||
|
// required: true
|
||||||
|
// type: string
|
||||||
|
// security:
|
||||||
|
// - BearerAuth: []
|
||||||
|
// responses:
|
||||||
|
// '200':
|
||||||
|
// description: success
|
||||||
|
// default:
|
||||||
|
// description: internal error
|
||||||
|
// schema:
|
||||||
|
// "$ref": "#/definitions/ErrorResponse"
|
||||||
|
|
||||||
ctx := r.Context()
|
ctx := r.Context()
|
||||||
session := ctx.Value(sessionContextKey).(*model.Session)
|
session := ctx.Value(sessionContextKey).(*model.Session)
|
||||||
vars := mux.Vars(r)
|
vars := mux.Vars(r)
|
||||||
|
@ -540,6 +652,33 @@ func (a *API) handleDeleteCategory(w http.ResponseWriter, r *http.Request) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (a *API) handleGetUserCategoryBoards(w http.ResponseWriter, r *http.Request) {
|
func (a *API) handleGetUserCategoryBoards(w http.ResponseWriter, r *http.Request) {
|
||||||
|
// swagger:operation GET /teams/{teamID}/categories getUserCategoryBoards
|
||||||
|
//
|
||||||
|
// Gets the user's board categories
|
||||||
|
//
|
||||||
|
// ---
|
||||||
|
// produces:
|
||||||
|
// - application/json
|
||||||
|
// parameters:
|
||||||
|
// - name: teamID
|
||||||
|
// in: path
|
||||||
|
// description: Team ID
|
||||||
|
// required: true
|
||||||
|
// type: string
|
||||||
|
// security:
|
||||||
|
// - BearerAuth: []
|
||||||
|
// responses:
|
||||||
|
// '200':
|
||||||
|
// description: success
|
||||||
|
// schema:
|
||||||
|
// items:
|
||||||
|
// "$ref": "#/definitions/CategoryBoards"
|
||||||
|
// type: array
|
||||||
|
// default:
|
||||||
|
// description: internal error
|
||||||
|
// schema:
|
||||||
|
// "$ref": "#/definitions/ErrorResponse"
|
||||||
|
|
||||||
ctx := r.Context()
|
ctx := r.Context()
|
||||||
session := ctx.Value(sessionContextKey).(*model.Session)
|
session := ctx.Value(sessionContextKey).(*model.Session)
|
||||||
userID := session.UserID
|
userID := session.UserID
|
||||||
|
@ -547,7 +686,7 @@ func (a *API) handleGetUserCategoryBoards(w http.ResponseWriter, r *http.Request
|
||||||
vars := mux.Vars(r)
|
vars := mux.Vars(r)
|
||||||
teamID := vars["teamID"]
|
teamID := vars["teamID"]
|
||||||
|
|
||||||
auditRec := a.makeAuditRecord(r, "getUserCategoryBlocks", audit.Fail)
|
auditRec := a.makeAuditRecord(r, "getUserCategoryBoards", audit.Fail)
|
||||||
defer a.audit.LogRecord(audit.LevelModify, auditRec)
|
defer a.audit.LogRecord(audit.LevelModify, auditRec)
|
||||||
|
|
||||||
categoryBlocks, err := a.app.GetUserCategoryBoards(userID, teamID)
|
categoryBlocks, err := a.app.GetUserCategoryBoards(userID, teamID)
|
||||||
|
@ -567,6 +706,39 @@ func (a *API) handleGetUserCategoryBoards(w http.ResponseWriter, r *http.Request
|
||||||
}
|
}
|
||||||
|
|
||||||
func (a *API) handleUpdateCategoryBoard(w http.ResponseWriter, r *http.Request) {
|
func (a *API) handleUpdateCategoryBoard(w http.ResponseWriter, r *http.Request) {
|
||||||
|
// swagger:operation POST /teams/{teamID}/categories/{categoryID}/boards/{boardID} updateCategoryBoard
|
||||||
|
//
|
||||||
|
// Set the category of a board
|
||||||
|
//
|
||||||
|
// ---
|
||||||
|
// produces:
|
||||||
|
// - application/json
|
||||||
|
// parameters:
|
||||||
|
// - name: teamID
|
||||||
|
// in: path
|
||||||
|
// description: Team ID
|
||||||
|
// required: true
|
||||||
|
// type: string
|
||||||
|
// - name: categoryID
|
||||||
|
// in: path
|
||||||
|
// description: Category ID
|
||||||
|
// required: true
|
||||||
|
// type: string
|
||||||
|
// - name: boardID
|
||||||
|
// in: path
|
||||||
|
// description: Board ID
|
||||||
|
// required: true
|
||||||
|
// type: string
|
||||||
|
// security:
|
||||||
|
// - BearerAuth: []
|
||||||
|
// responses:
|
||||||
|
// '200':
|
||||||
|
// description: success
|
||||||
|
// default:
|
||||||
|
// description: internal error
|
||||||
|
// schema:
|
||||||
|
// "$ref": "#/definitions/ErrorResponse"
|
||||||
|
|
||||||
auditRec := a.makeAuditRecord(r, "updateCategoryBoard", audit.Fail)
|
auditRec := a.makeAuditRecord(r, "updateCategoryBoard", audit.Fail)
|
||||||
defer a.audit.LogRecord(audit.LevelModify, auditRec)
|
defer a.audit.LogRecord(audit.LevelModify, auditRec)
|
||||||
|
|
||||||
|
|
|
@ -43,15 +43,15 @@ type Block struct {
|
||||||
// required: false
|
// required: false
|
||||||
Fields map[string]interface{} `json:"fields"`
|
Fields map[string]interface{} `json:"fields"`
|
||||||
|
|
||||||
// The creation time
|
// The creation time in miliseconds since the current epoch
|
||||||
// required: true
|
// required: true
|
||||||
CreateAt int64 `json:"createAt"`
|
CreateAt int64 `json:"createAt"`
|
||||||
|
|
||||||
// The last modified time
|
// The last modified time in miliseconds since the current epoch
|
||||||
// required: true
|
// required: true
|
||||||
UpdateAt int64 `json:"updateAt"`
|
UpdateAt int64 `json:"updateAt"`
|
||||||
|
|
||||||
// The deleted time. Set to indicate this block is deleted
|
// The deleted time in miliseconds since the current epoch. Set to indicate this block is deleted
|
||||||
// required: false
|
// required: false
|
||||||
DeleteAt int64 `json:"deleteAt"`
|
DeleteAt int64 `json:"deleteAt"`
|
||||||
|
|
||||||
|
|
|
@ -72,15 +72,15 @@ type Board struct {
|
||||||
// required: false
|
// required: false
|
||||||
CardProperties []map[string]interface{} `json:"cardProperties"`
|
CardProperties []map[string]interface{} `json:"cardProperties"`
|
||||||
|
|
||||||
// The creation time
|
// The creation time in miliseconds since the current epoch
|
||||||
// required: true
|
// required: true
|
||||||
CreateAt int64 `json:"createAt"`
|
CreateAt int64 `json:"createAt"`
|
||||||
|
|
||||||
// The last modified time
|
// The last modified time in miliseconds since the current epoch
|
||||||
// required: true
|
// required: true
|
||||||
UpdateAt int64 `json:"updateAt"`
|
UpdateAt int64 `json:"updateAt"`
|
||||||
|
|
||||||
// The deleted time. Set to indicate this block is deleted
|
// The deleted time in miliseconds since the current epoch. Set to indicate this block is deleted
|
||||||
// required: false
|
// required: false
|
||||||
DeleteAt int64 `json:"deleteAt"`
|
DeleteAt int64 `json:"deleteAt"`
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,14 +6,36 @@ import (
|
||||||
"github.com/mattermost/focalboard/server/utils"
|
"github.com/mattermost/focalboard/server/utils"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// Category is a board category
|
||||||
|
// swagger:model
|
||||||
type Category struct {
|
type Category struct {
|
||||||
ID string `json:"id"`
|
// The id for this category
|
||||||
Name string `json:"name"`
|
// required: true
|
||||||
UserID string `json:"userID"`
|
ID string `json:"id"`
|
||||||
TeamID string `json:"teamID"`
|
|
||||||
CreateAt int64 `json:"createAt"`
|
// The name for this category
|
||||||
UpdateAt int64 `json:"updateAt"`
|
// required: true
|
||||||
DeleteAt int64 `json:"deleteAt"`
|
Name string `json:"name"`
|
||||||
|
|
||||||
|
// The user's id for this category
|
||||||
|
// required: true
|
||||||
|
UserID string `json:"userID"`
|
||||||
|
|
||||||
|
// The team id for this category
|
||||||
|
// required: true
|
||||||
|
TeamID string `json:"teamID"`
|
||||||
|
|
||||||
|
// The creation time in miliseconds since the current epoch
|
||||||
|
// required: true
|
||||||
|
CreateAt int64 `json:"createAt"`
|
||||||
|
|
||||||
|
// The last modified time in miliseconds since the current epoch
|
||||||
|
// required: true
|
||||||
|
UpdateAt int64 `json:"updateAt"`
|
||||||
|
|
||||||
|
// The deleted time in miliseconds since the current epoch. Set to indicate this category is deleted
|
||||||
|
// required: false
|
||||||
|
DeleteAt int64 `json:"deleteAt"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *Category) Hydrate() {
|
func (c *Category) Hydrate() {
|
||||||
|
|
|
@ -1,7 +1,12 @@
|
||||||
package model
|
package model
|
||||||
|
|
||||||
|
// CategoryBoards is a board category and associated boards
|
||||||
|
// swagger:model
|
||||||
type CategoryBoards struct {
|
type CategoryBoards struct {
|
||||||
Category
|
Category
|
||||||
|
|
||||||
|
// The IDs of boards in this category
|
||||||
|
// required: true
|
||||||
BoardIDs []string `json:"boardIDs"`
|
BoardIDs []string `json:"boardIDs"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,21 @@
|
||||||
package model
|
package model
|
||||||
|
|
||||||
|
// ClientConfig is the client configuration
|
||||||
|
// swagger:model
|
||||||
type ClientConfig struct {
|
type ClientConfig struct {
|
||||||
Telemetry bool `json:"telemetry"`
|
// Is telemetry enabled
|
||||||
TelemetryID string `json:"telemetryid"`
|
// required: true
|
||||||
EnablePublicSharedBoards bool `json:"enablePublicSharedBoards"`
|
Telemetry bool `json:"telemetry"`
|
||||||
FeatureFlags map[string]string `json:"featureFlags"`
|
|
||||||
|
// The telemetry ID
|
||||||
|
// required: true
|
||||||
|
TelemetryID string `json:"telemetryid"`
|
||||||
|
|
||||||
|
// Is public shared boards enabled
|
||||||
|
// required: true
|
||||||
|
EnablePublicSharedBoards bool `json:"enablePublicSharedBoards"`
|
||||||
|
|
||||||
|
// The server feature flags
|
||||||
|
// required: true
|
||||||
|
FeatureFlags map[string]string `json:"featureFlags"`
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,11 +21,11 @@ type NotificationHint struct {
|
||||||
// ModifiedByID is the id of the user who made the block change
|
// ModifiedByID is the id of the user who made the block change
|
||||||
ModifiedByID string `json:"modified_by_id"`
|
ModifiedByID string `json:"modified_by_id"`
|
||||||
|
|
||||||
// CreatedAt is the timestamp this notification hint was created
|
// CreatedAt is the timestamp this notification hint was created in miliseconds since the current epoch
|
||||||
// required: true
|
// required: true
|
||||||
CreateAt int64 `json:"create_at"`
|
CreateAt int64 `json:"create_at"`
|
||||||
|
|
||||||
// NotifyAt is the timestamp this notification should be scheduled
|
// NotifyAt is the timestamp this notification should be scheduled in miliseconds since the current epoch
|
||||||
// required: true
|
// required: true
|
||||||
NotifyAt int64 `json:"notify_at"`
|
NotifyAt int64 `json:"notify_at"`
|
||||||
}
|
}
|
||||||
|
|
|
@ -24,7 +24,7 @@ type Sharing struct {
|
||||||
// required: true
|
// required: true
|
||||||
ModifiedBy string `json:"modifiedBy"`
|
ModifiedBy string `json:"modifiedBy"`
|
||||||
|
|
||||||
// Updated time
|
// Updated time in miliseconds since the current epoch
|
||||||
// required: true
|
// required: true
|
||||||
UpdateAt int64 `json:"update_at,omitempty"`
|
UpdateAt int64 `json:"update_at,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
|
@ -43,11 +43,11 @@ type Subscription struct {
|
||||||
// required: true
|
// required: true
|
||||||
NotifiedAt int64 `json:"notifiedAt,omitempty"`
|
NotifiedAt int64 `json:"notifiedAt,omitempty"`
|
||||||
|
|
||||||
// CreatedAt is the timestamp this subscription was created
|
// CreatedAt is the timestamp this subscription was created in miliseconds since the current epoch
|
||||||
// required: true
|
// required: true
|
||||||
CreateAt int64 `json:"createAt"`
|
CreateAt int64 `json:"createAt"`
|
||||||
|
|
||||||
// DeleteAt is the timestamp this subscription was deleted, or zero if not deleted
|
// DeleteAt is the timestamp this subscription was deleted in miliseconds since the current epoch, or zero if not deleted
|
||||||
// required: true
|
// required: true
|
||||||
DeleteAt int64 `json:"deleteAt"`
|
DeleteAt int64 `json:"deleteAt"`
|
||||||
}
|
}
|
||||||
|
|
|
@ -28,7 +28,7 @@ type Team struct {
|
||||||
// required: true
|
// required: true
|
||||||
ModifiedBy string `json:"modifiedBy"`
|
ModifiedBy string `json:"modifiedBy"`
|
||||||
|
|
||||||
// Updated time
|
// Updated time in miliseconds since the current epoch
|
||||||
// required: true
|
// required: true
|
||||||
UpdateAt int64 `json:"updateAt"`
|
UpdateAt int64 `json:"updateAt"`
|
||||||
}
|
}
|
||||||
|
|
|
@ -42,15 +42,15 @@ type User struct {
|
||||||
// required: true
|
// required: true
|
||||||
Props map[string]interface{} `json:"props"`
|
Props map[string]interface{} `json:"props"`
|
||||||
|
|
||||||
// Created time
|
// Created time in miliseconds since the current epoch
|
||||||
// required: true
|
// required: true
|
||||||
CreateAt int64 `json:"create_at,omitempty"`
|
CreateAt int64 `json:"create_at,omitempty"`
|
||||||
|
|
||||||
// Updated time
|
// Updated time in miliseconds since the current epoch
|
||||||
// required: true
|
// required: true
|
||||||
UpdateAt int64 `json:"update_at,omitempty"`
|
UpdateAt int64 `json:"update_at,omitempty"`
|
||||||
|
|
||||||
// Deleted time, set to indicate user is deleted
|
// Deleted time in miliseconds since the current epoch, set to indicate user is deleted
|
||||||
// required: true
|
// required: true
|
||||||
DeleteAt int64 `json:"delete_at"`
|
DeleteAt int64 `json:"delete_at"`
|
||||||
|
|
||||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -10,7 +10,7 @@ definitions:
|
||||||
type: string
|
type: string
|
||||||
x-go-name: BoardID
|
x-go-name: BoardID
|
||||||
createAt:
|
createAt:
|
||||||
description: The creation time
|
description: The creation time in miliseconds since the current epoch
|
||||||
format: int64
|
format: int64
|
||||||
type: integer
|
type: integer
|
||||||
x-go-name: CreateAt
|
x-go-name: CreateAt
|
||||||
|
@ -19,7 +19,7 @@ definitions:
|
||||||
type: string
|
type: string
|
||||||
x-go-name: CreatedBy
|
x-go-name: CreatedBy
|
||||||
deleteAt:
|
deleteAt:
|
||||||
description: The deleted time. Set to indicate this block is deleted
|
description: The deleted time in miliseconds since the current epoch. Set to indicate this block is deleted
|
||||||
format: int64
|
format: int64
|
||||||
type: integer
|
type: integer
|
||||||
x-go-name: DeleteAt
|
x-go-name: DeleteAt
|
||||||
|
@ -53,7 +53,7 @@ definitions:
|
||||||
type:
|
type:
|
||||||
$ref: '#/definitions/BlockType'
|
$ref: '#/definitions/BlockType'
|
||||||
updateAt:
|
updateAt:
|
||||||
description: The last modified time
|
description: The last modified time in miliseconds since the current epoch
|
||||||
format: int64
|
format: int64
|
||||||
type: integer
|
type: integer
|
||||||
x-go-name: UpdateAt
|
x-go-name: UpdateAt
|
||||||
|
@ -140,14 +140,8 @@ definitions:
|
||||||
description: The ID of the channel that the board was created from
|
description: The ID of the channel that the board was created from
|
||||||
type: string
|
type: string
|
||||||
x-go-name: ChannelID
|
x-go-name: ChannelID
|
||||||
columnCalculations:
|
|
||||||
additionalProperties:
|
|
||||||
type: object
|
|
||||||
description: The calculations on the board's cards
|
|
||||||
type: object
|
|
||||||
x-go-name: ColumnCalculations
|
|
||||||
createAt:
|
createAt:
|
||||||
description: The creation time
|
description: The creation time in miliseconds since the current epoch
|
||||||
format: int64
|
format: int64
|
||||||
type: integer
|
type: integer
|
||||||
x-go-name: CreateAt
|
x-go-name: CreateAt
|
||||||
|
@ -156,7 +150,7 @@ definitions:
|
||||||
type: string
|
type: string
|
||||||
x-go-name: CreatedBy
|
x-go-name: CreatedBy
|
||||||
deleteAt:
|
deleteAt:
|
||||||
description: The deleted time. Set to indicate this block is deleted
|
description: The deleted time in miliseconds since the current epoch. Set to indicate this block is deleted
|
||||||
format: int64
|
format: int64
|
||||||
type: integer
|
type: integer
|
||||||
x-go-name: DeleteAt
|
x-go-name: DeleteAt
|
||||||
|
@ -206,7 +200,7 @@ definitions:
|
||||||
type:
|
type:
|
||||||
$ref: '#/definitions/BoardType'
|
$ref: '#/definitions/BoardType'
|
||||||
updateAt:
|
updateAt:
|
||||||
description: The last modified time
|
description: The last modified time in miliseconds since the current epoch
|
||||||
format: int64
|
format: int64
|
||||||
type: integer
|
type: integer
|
||||||
x-go-name: UpdateAt
|
x-go-name: UpdateAt
|
||||||
|
@ -221,8 +215,7 @@ definitions:
|
||||||
type: object
|
type: object
|
||||||
x-go-package: github.com/mattermost/focalboard/server/model
|
x-go-package: github.com/mattermost/focalboard/server/model
|
||||||
BoardMember:
|
BoardMember:
|
||||||
description: BoardMember stores the information of the membership of a user on
|
description: BoardMember stores the information of the membership of a user on a board
|
||||||
a board
|
|
||||||
properties:
|
properties:
|
||||||
boardId:
|
boardId:
|
||||||
description: The ID of the board
|
description: The ID of the board
|
||||||
|
@ -262,8 +255,7 @@ definitions:
|
||||||
type: object
|
type: object
|
||||||
x-go-package: github.com/mattermost/focalboard/server/model
|
x-go-package: github.com/mattermost/focalboard/server/model
|
||||||
BoardMemberHistoryEntry:
|
BoardMemberHistoryEntry:
|
||||||
description: BoardMemberHistoryEntry stores the information of the membership
|
description: BoardMemberHistoryEntry stores the information of the membership of a user on a board
|
||||||
of a user on a board
|
|
||||||
properties:
|
properties:
|
||||||
action:
|
action:
|
||||||
description: The action that added this history entry (created or deleted)
|
description: The action that added this history entry (created or deleted)
|
||||||
|
@ -275,8 +267,8 @@ definitions:
|
||||||
x-go-name: BoardID
|
x-go-name: BoardID
|
||||||
insertAt:
|
insertAt:
|
||||||
description: The insertion time
|
description: The insertion time
|
||||||
format: int64
|
format: date-time
|
||||||
type: integer
|
type: string
|
||||||
x-go-name: InsertAt
|
x-go-name: InsertAt
|
||||||
userId:
|
userId:
|
||||||
description: The ID of the user
|
description: The ID of the user
|
||||||
|
@ -300,20 +292,17 @@ definitions:
|
||||||
type: string
|
type: string
|
||||||
x-go-name: CreatedBy
|
x-go-name: CreatedBy
|
||||||
descendantFirstUpdateAt:
|
descendantFirstUpdateAt:
|
||||||
description: The earliest time a descendant of this board was added, modified,
|
description: The earliest time a descendant of this board was added, modified, or deleted
|
||||||
or deleted
|
|
||||||
format: int64
|
format: int64
|
||||||
type: integer
|
type: integer
|
||||||
x-go-name: DescendantFirstUpdateAt
|
x-go-name: DescendantFirstUpdateAt
|
||||||
descendantLastUpdateAt:
|
descendantLastUpdateAt:
|
||||||
description: The most recent time a descendant of this board was added, modified,
|
description: The most recent time a descendant of this board was added, modified, or deleted
|
||||||
or deleted
|
|
||||||
format: int64
|
format: int64
|
||||||
type: integer
|
type: integer
|
||||||
x-go-name: DescendantLastUpdateAt
|
x-go-name: DescendantLastUpdateAt
|
||||||
lastModifiedBy:
|
lastModifiedBy:
|
||||||
description: The ID of the user that last modified the most recently modified
|
description: The ID of the user that last modified the most recently modified descendant
|
||||||
descendant
|
|
||||||
type: string
|
type: string
|
||||||
x-go-name: LastModifiedBy
|
x-go-name: LastModifiedBy
|
||||||
required:
|
required:
|
||||||
|
@ -333,12 +322,6 @@ definitions:
|
||||||
type: string
|
type: string
|
||||||
type: array
|
type: array
|
||||||
x-go-name: DeletedCardProperties
|
x-go-name: DeletedCardProperties
|
||||||
deletedColumnCalculations:
|
|
||||||
description: The board deleted column calculations
|
|
||||||
items:
|
|
||||||
type: string
|
|
||||||
type: array
|
|
||||||
x-go-name: DeletedColumnCalculations
|
|
||||||
deletedProperties:
|
deletedProperties:
|
||||||
description: The board removed properties
|
description: The board removed properties
|
||||||
items:
|
items:
|
||||||
|
@ -371,12 +354,6 @@ definitions:
|
||||||
type: object
|
type: object
|
||||||
type: array
|
type: array
|
||||||
x-go-name: UpdatedCardProperties
|
x-go-name: UpdatedCardProperties
|
||||||
updatedColumnCalculations:
|
|
||||||
additionalProperties:
|
|
||||||
type: object
|
|
||||||
description: The board updated column calculations
|
|
||||||
type: object
|
|
||||||
x-go-name: UpdatedColumnCalculations
|
|
||||||
updatedProperties:
|
updatedProperties:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: object
|
type: object
|
||||||
|
@ -407,6 +384,99 @@ definitions:
|
||||||
x-go-name: Boards
|
x-go-name: Boards
|
||||||
type: object
|
type: object
|
||||||
x-go-package: github.com/mattermost/focalboard/server/model
|
x-go-package: github.com/mattermost/focalboard/server/model
|
||||||
|
Category:
|
||||||
|
description: Category is a board category
|
||||||
|
properties:
|
||||||
|
createAt:
|
||||||
|
description: The creation time in miliseconds since the current epoch
|
||||||
|
format: int64
|
||||||
|
type: integer
|
||||||
|
x-go-name: CreateAt
|
||||||
|
deleteAt:
|
||||||
|
description: The deleted time in miliseconds since the current epoch. Set to indicate this category is deleted
|
||||||
|
format: int64
|
||||||
|
type: integer
|
||||||
|
x-go-name: DeleteAt
|
||||||
|
id:
|
||||||
|
description: The id for this category
|
||||||
|
type: string
|
||||||
|
x-go-name: ID
|
||||||
|
name:
|
||||||
|
description: The name for this category
|
||||||
|
type: string
|
||||||
|
x-go-name: Name
|
||||||
|
teamID:
|
||||||
|
description: The team id for this category
|
||||||
|
type: string
|
||||||
|
x-go-name: TeamID
|
||||||
|
updateAt:
|
||||||
|
description: The last modified time in miliseconds since the current epoch
|
||||||
|
format: int64
|
||||||
|
type: integer
|
||||||
|
x-go-name: UpdateAt
|
||||||
|
userID:
|
||||||
|
description: The user's id for this category
|
||||||
|
type: string
|
||||||
|
x-go-name: UserID
|
||||||
|
required:
|
||||||
|
- id
|
||||||
|
- name
|
||||||
|
- userID
|
||||||
|
- teamID
|
||||||
|
- createAt
|
||||||
|
- updateAt
|
||||||
|
type: object
|
||||||
|
x-go-package: github.com/mattermost/focalboard/server/model
|
||||||
|
CategoryBoards:
|
||||||
|
description: CategoryBoards is a board category and associated boards
|
||||||
|
properties:
|
||||||
|
boardIDs:
|
||||||
|
description: The IDs of boards in this category
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
|
x-go-name: BoardIDs
|
||||||
|
createAt:
|
||||||
|
description: The creation time in miliseconds since the current epoch
|
||||||
|
format: int64
|
||||||
|
type: integer
|
||||||
|
x-go-name: CreateAt
|
||||||
|
deleteAt:
|
||||||
|
description: The deleted time in miliseconds since the current epoch. Set to indicate this category is deleted
|
||||||
|
format: int64
|
||||||
|
type: integer
|
||||||
|
x-go-name: DeleteAt
|
||||||
|
id:
|
||||||
|
description: The id for this category
|
||||||
|
type: string
|
||||||
|
x-go-name: ID
|
||||||
|
name:
|
||||||
|
description: The name for this category
|
||||||
|
type: string
|
||||||
|
x-go-name: Name
|
||||||
|
teamID:
|
||||||
|
description: The team id for this category
|
||||||
|
type: string
|
||||||
|
x-go-name: TeamID
|
||||||
|
updateAt:
|
||||||
|
description: The last modified time in miliseconds since the current epoch
|
||||||
|
format: int64
|
||||||
|
type: integer
|
||||||
|
x-go-name: UpdateAt
|
||||||
|
userID:
|
||||||
|
description: The user's id for this category
|
||||||
|
type: string
|
||||||
|
x-go-name: UserID
|
||||||
|
required:
|
||||||
|
- id
|
||||||
|
- name
|
||||||
|
- userID
|
||||||
|
- teamID
|
||||||
|
- createAt
|
||||||
|
- updateAt
|
||||||
|
- boardIDs
|
||||||
|
type: object
|
||||||
|
x-go-package: github.com/mattermost/focalboard/server/model
|
||||||
ChangePasswordRequest:
|
ChangePasswordRequest:
|
||||||
description: ChangePasswordRequest is a user password change request
|
description: ChangePasswordRequest is a user password change request
|
||||||
properties:
|
properties:
|
||||||
|
@ -423,6 +493,34 @@ definitions:
|
||||||
- newPassword
|
- newPassword
|
||||||
type: object
|
type: object
|
||||||
x-go-package: github.com/mattermost/focalboard/server/api
|
x-go-package: github.com/mattermost/focalboard/server/api
|
||||||
|
ClientConfig:
|
||||||
|
description: ClientConfig is the client configuration
|
||||||
|
properties:
|
||||||
|
enablePublicSharedBoards:
|
||||||
|
description: Is public shared boards enabled
|
||||||
|
type: boolean
|
||||||
|
x-go-name: EnablePublicSharedBoards
|
||||||
|
featureFlags:
|
||||||
|
additionalProperties:
|
||||||
|
type: string
|
||||||
|
description: The server feature flags
|
||||||
|
type: object
|
||||||
|
x-go-name: FeatureFlags
|
||||||
|
telemetry:
|
||||||
|
description: Is telemetry enabled
|
||||||
|
type: boolean
|
||||||
|
x-go-name: Telemetry
|
||||||
|
telemetryid:
|
||||||
|
description: The telemetry ID
|
||||||
|
type: string
|
||||||
|
x-go-name: TelemetryID
|
||||||
|
required:
|
||||||
|
- telemetry
|
||||||
|
- telemetryid
|
||||||
|
- enablePublicSharedBoards
|
||||||
|
- featureFlags
|
||||||
|
type: object
|
||||||
|
x-go-package: github.com/mattermost/focalboard/server/model
|
||||||
DeleteBoardsAndBlocks:
|
DeleteBoardsAndBlocks:
|
||||||
description: |-
|
description: |-
|
||||||
DeleteBoardsAndBlocks is used to list the boards and blocks to
|
DeleteBoardsAndBlocks is used to list the boards and blocks to
|
||||||
|
@ -517,7 +615,7 @@ definitions:
|
||||||
block_type:
|
block_type:
|
||||||
$ref: '#/definitions/BlockType'
|
$ref: '#/definitions/BlockType'
|
||||||
create_at:
|
create_at:
|
||||||
description: CreatedAt is the timestamp this notification hint was created
|
description: CreatedAt is the timestamp this notification hint was created in miliseconds since the current epoch
|
||||||
format: int64
|
format: int64
|
||||||
type: integer
|
type: integer
|
||||||
x-go-name: CreateAt
|
x-go-name: CreateAt
|
||||||
|
@ -526,7 +624,7 @@ definitions:
|
||||||
type: string
|
type: string
|
||||||
x-go-name: ModifiedByID
|
x-go-name: ModifiedByID
|
||||||
notify_at:
|
notify_at:
|
||||||
description: NotifyAt is the timestamp this notification should be scheduled
|
description: NotifyAt is the timestamp this notification should be scheduled in miliseconds since the current epoch
|
||||||
format: int64
|
format: int64
|
||||||
type: integer
|
type: integer
|
||||||
x-go-name: NotifyAt
|
x-go-name: NotifyAt
|
||||||
|
@ -619,7 +717,7 @@ definitions:
|
||||||
type: string
|
type: string
|
||||||
x-go-name: Token
|
x-go-name: Token
|
||||||
update_at:
|
update_at:
|
||||||
description: Updated time
|
description: Updated time in miliseconds since the current epoch
|
||||||
format: int64
|
format: int64
|
||||||
type: integer
|
type: integer
|
||||||
x-go-name: UpdateAt
|
x-go-name: UpdateAt
|
||||||
|
@ -632,8 +730,7 @@ definitions:
|
||||||
type: object
|
type: object
|
||||||
x-go-package: github.com/mattermost/focalboard/server/model
|
x-go-package: github.com/mattermost/focalboard/server/model
|
||||||
Subscriber:
|
Subscriber:
|
||||||
description: Subscriber is an entity (e.g. user, channel) that can subscribe to
|
description: Subscriber is an entity (e.g. user, channel) that can subscribe to events from boards, cards, etc
|
||||||
events from boards, cards, etc
|
|
||||||
properties:
|
properties:
|
||||||
notified_at:
|
notified_at:
|
||||||
description: NotifiedAt is the timestamp this subscriber was last notified
|
description: NotifiedAt is the timestamp this subscriber was last notified
|
||||||
|
@ -663,19 +760,17 @@ definitions:
|
||||||
blockType:
|
blockType:
|
||||||
$ref: '#/definitions/BlockType'
|
$ref: '#/definitions/BlockType'
|
||||||
createAt:
|
createAt:
|
||||||
description: CreatedAt is the timestamp this subscription was created
|
description: CreatedAt is the timestamp this subscription was created in miliseconds since the current epoch
|
||||||
format: int64
|
format: int64
|
||||||
type: integer
|
type: integer
|
||||||
x-go-name: CreateAt
|
x-go-name: CreateAt
|
||||||
deleteAt:
|
deleteAt:
|
||||||
description: DeleteAt is the timestamp this subscription was deleted, or zero
|
description: DeleteAt is the timestamp this subscription was deleted in miliseconds since the current epoch, or zero if not deleted
|
||||||
if not deleted
|
|
||||||
format: int64
|
format: int64
|
||||||
type: integer
|
type: integer
|
||||||
x-go-name: DeleteAt
|
x-go-name: DeleteAt
|
||||||
notifiedAt:
|
notifiedAt:
|
||||||
description: NotifiedAt is the timestamp of the last notification sent for
|
description: NotifiedAt is the timestamp of the last notification sent for this subscription
|
||||||
this subscription
|
|
||||||
format: int64
|
format: int64
|
||||||
type: integer
|
type: integer
|
||||||
x-go-name: NotifiedAt
|
x-go-name: NotifiedAt
|
||||||
|
@ -722,7 +817,7 @@ definitions:
|
||||||
type: string
|
type: string
|
||||||
x-go-name: Title
|
x-go-name: Title
|
||||||
updateAt:
|
updateAt:
|
||||||
description: Updated time
|
description: Updated time in miliseconds since the current epoch
|
||||||
format: int64
|
format: int64
|
||||||
type: integer
|
type: integer
|
||||||
x-go-name: UpdateAt
|
x-go-name: UpdateAt
|
||||||
|
@ -737,12 +832,12 @@ definitions:
|
||||||
description: User is a user
|
description: User is a user
|
||||||
properties:
|
properties:
|
||||||
create_at:
|
create_at:
|
||||||
description: Created time
|
description: Created time in miliseconds since the current epoch
|
||||||
format: int64
|
format: int64
|
||||||
type: integer
|
type: integer
|
||||||
x-go-name: CreateAt
|
x-go-name: CreateAt
|
||||||
delete_at:
|
delete_at:
|
||||||
description: Deleted time, set to indicate user is deleted
|
description: Deleted time in miliseconds since the current epoch, set to indicate user is deleted
|
||||||
format: int64
|
format: int64
|
||||||
type: integer
|
type: integer
|
||||||
x-go-name: DeleteAt
|
x-go-name: DeleteAt
|
||||||
|
@ -765,7 +860,7 @@ definitions:
|
||||||
type: object
|
type: object
|
||||||
x-go-name: Props
|
x-go-name: Props
|
||||||
update_at:
|
update_at:
|
||||||
description: Updated time
|
description: Updated time in miliseconds since the current epoch
|
||||||
format: int64
|
format: int64
|
||||||
type: integer
|
type: integer
|
||||||
x-go-name: UpdateAt
|
x-go-name: UpdateAt
|
||||||
|
@ -1516,6 +1611,21 @@ paths:
|
||||||
$ref: '#/definitions/ErrorResponse'
|
$ref: '#/definitions/ErrorResponse'
|
||||||
security:
|
security:
|
||||||
- BearerAuth: []
|
- BearerAuth: []
|
||||||
|
/clientConfig:
|
||||||
|
get:
|
||||||
|
description: Returns the client configuration
|
||||||
|
operationId: getClientConfig
|
||||||
|
produces:
|
||||||
|
- application/json
|
||||||
|
responses:
|
||||||
|
"200":
|
||||||
|
description: success
|
||||||
|
schema:
|
||||||
|
$ref: '#/definitions/ClientConfig'
|
||||||
|
default:
|
||||||
|
description: internal error
|
||||||
|
schema:
|
||||||
|
$ref: '#/definitions/ErrorResponse'
|
||||||
/login:
|
/login:
|
||||||
post:
|
post:
|
||||||
description: Login user
|
description: Login user
|
||||||
|
@ -1602,8 +1712,7 @@ paths:
|
||||||
$ref: '#/definitions/ErrorResponse'
|
$ref: '#/definitions/ErrorResponse'
|
||||||
security:
|
security:
|
||||||
- BearerAuth: []
|
- BearerAuth: []
|
||||||
summary: Creates a subscription to a block for a user. The user will receive
|
summary: Creates a subscription to a block for a user. The user will receive change notifications for the block.
|
||||||
change notifications for the block.
|
|
||||||
/subscriptions/{blockID}/{subscriberID}:
|
/subscriptions/{blockID}/{subscriberID}:
|
||||||
delete:
|
delete:
|
||||||
operationId: deleteSubscription
|
operationId: deleteSubscription
|
||||||
|
@ -1629,8 +1738,7 @@ paths:
|
||||||
$ref: '#/definitions/ErrorResponse'
|
$ref: '#/definitions/ErrorResponse'
|
||||||
security:
|
security:
|
||||||
- BearerAuth: []
|
- BearerAuth: []
|
||||||
summary: Deletes a subscription a user has for a a block. The user will no longer
|
summary: Deletes a subscription a user has for a a block. The user will no longer receive change notifications for the block.
|
||||||
receive change notifications for the block.
|
|
||||||
/subscriptions/{subscriberID}:
|
/subscriptions/{subscriberID}:
|
||||||
get:
|
get:
|
||||||
operationId: getSubscriptions
|
operationId: getSubscriptions
|
||||||
|
@ -1861,6 +1969,149 @@ paths:
|
||||||
$ref: '#/definitions/ErrorResponse'
|
$ref: '#/definitions/ErrorResponse'
|
||||||
security:
|
security:
|
||||||
- BearerAuth: []
|
- BearerAuth: []
|
||||||
|
/teams/{teamID}/categories:
|
||||||
|
get:
|
||||||
|
description: Gets the user's board categories
|
||||||
|
operationId: getUserCategoryBoards
|
||||||
|
parameters:
|
||||||
|
- description: Team ID
|
||||||
|
in: path
|
||||||
|
name: teamID
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
produces:
|
||||||
|
- application/json
|
||||||
|
responses:
|
||||||
|
"200":
|
||||||
|
description: success
|
||||||
|
schema:
|
||||||
|
items:
|
||||||
|
$ref: '#/definitions/CategoryBoards'
|
||||||
|
type: array
|
||||||
|
default:
|
||||||
|
description: internal error
|
||||||
|
schema:
|
||||||
|
$ref: '#/definitions/ErrorResponse'
|
||||||
|
security:
|
||||||
|
- BearerAuth: []
|
||||||
|
post:
|
||||||
|
description: Create a category for boards
|
||||||
|
operationId: createCategory
|
||||||
|
parameters:
|
||||||
|
- description: Team ID
|
||||||
|
in: path
|
||||||
|
name: teamID
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
- description: category to create
|
||||||
|
in: body
|
||||||
|
name: Body
|
||||||
|
required: true
|
||||||
|
schema:
|
||||||
|
$ref: '#/definitions/Category'
|
||||||
|
produces:
|
||||||
|
- application/json
|
||||||
|
responses:
|
||||||
|
"200":
|
||||||
|
description: success
|
||||||
|
schema:
|
||||||
|
$ref: '#/definitions/Category'
|
||||||
|
default:
|
||||||
|
description: internal error
|
||||||
|
schema:
|
||||||
|
$ref: '#/definitions/ErrorResponse'
|
||||||
|
security:
|
||||||
|
- BearerAuth: []
|
||||||
|
/teams/{teamID}/categories/{categoryID}:
|
||||||
|
delete:
|
||||||
|
description: Delete a category
|
||||||
|
operationId: deleteCategory
|
||||||
|
parameters:
|
||||||
|
- description: Team ID
|
||||||
|
in: path
|
||||||
|
name: teamID
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
- description: Category ID
|
||||||
|
in: path
|
||||||
|
name: categoryID
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
produces:
|
||||||
|
- application/json
|
||||||
|
responses:
|
||||||
|
"200":
|
||||||
|
description: success
|
||||||
|
default:
|
||||||
|
description: internal error
|
||||||
|
schema:
|
||||||
|
$ref: '#/definitions/ErrorResponse'
|
||||||
|
security:
|
||||||
|
- BearerAuth: []
|
||||||
|
put:
|
||||||
|
description: Create a category for boards
|
||||||
|
operationId: updateCategory
|
||||||
|
parameters:
|
||||||
|
- description: Team ID
|
||||||
|
in: path
|
||||||
|
name: teamID
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
- description: Category ID
|
||||||
|
in: path
|
||||||
|
name: categoryID
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
- description: category to update
|
||||||
|
in: body
|
||||||
|
name: Body
|
||||||
|
required: true
|
||||||
|
schema:
|
||||||
|
$ref: '#/definitions/Category'
|
||||||
|
produces:
|
||||||
|
- application/json
|
||||||
|
responses:
|
||||||
|
"200":
|
||||||
|
description: success
|
||||||
|
schema:
|
||||||
|
$ref: '#/definitions/Category'
|
||||||
|
default:
|
||||||
|
description: internal error
|
||||||
|
schema:
|
||||||
|
$ref: '#/definitions/ErrorResponse'
|
||||||
|
security:
|
||||||
|
- BearerAuth: []
|
||||||
|
/teams/{teamID}/categories/{categoryID}/boards/{boardID}:
|
||||||
|
post:
|
||||||
|
description: Set the category of a board
|
||||||
|
operationId: updateCategoryBoard
|
||||||
|
parameters:
|
||||||
|
- description: Team ID
|
||||||
|
in: path
|
||||||
|
name: teamID
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
- description: Category ID
|
||||||
|
in: path
|
||||||
|
name: categoryID
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
- description: Board ID
|
||||||
|
in: path
|
||||||
|
name: boardID
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
produces:
|
||||||
|
- application/json
|
||||||
|
responses:
|
||||||
|
"200":
|
||||||
|
description: success
|
||||||
|
default:
|
||||||
|
description: internal error
|
||||||
|
schema:
|
||||||
|
$ref: '#/definitions/ErrorResponse'
|
||||||
|
security:
|
||||||
|
- BearerAuth: []
|
||||||
/teams/{teamID}/regenerate_signup_token:
|
/teams/{teamID}/regenerate_signup_token:
|
||||||
post:
|
post:
|
||||||
description: Regenerates the signup token for the root team
|
description: Regenerates the signup token for the root team
|
||||||
|
@ -2060,8 +2311,7 @@ schemes:
|
||||||
- https
|
- https
|
||||||
securityDefinitions:
|
securityDefinitions:
|
||||||
BearerAuth:
|
BearerAuth:
|
||||||
description: 'Pass session token using Bearer authentication, e.g. set header
|
description: 'Pass session token using Bearer authentication, e.g. set header "Authorization: Bearer <session token>"'
|
||||||
"Authorization: Bearer <session token>"'
|
|
||||||
in: header
|
in: header
|
||||||
name: Authorization
|
name: Authorization
|
||||||
type: apiKey
|
type: apiKey
|
||||||
|
|
Loading…
Reference in a new issue