[bugfix] Swagger: add missing filter_action param for v2 filter PUT (#3281)
This commit is contained in:
parent
0595c83188
commit
100d660797
|
@ -10462,6 +10462,16 @@ paths:
|
||||||
in: formData
|
in: formData
|
||||||
name: expires_in
|
name: expires_in
|
||||||
type: number
|
type: number
|
||||||
|
- description: |-
|
||||||
|
The action to be taken when a status matches this filter.
|
||||||
|
|
||||||
|
Sample: warn
|
||||||
|
enum:
|
||||||
|
- warn
|
||||||
|
- hide
|
||||||
|
in: formData
|
||||||
|
name: filter_action
|
||||||
|
type: string
|
||||||
produces:
|
produces:
|
||||||
- application/json
|
- application/json
|
||||||
responses:
|
responses:
|
||||||
|
|
|
@ -121,6 +121,17 @@ import (
|
||||||
//
|
//
|
||||||
// Sample: 86400
|
// Sample: 86400
|
||||||
// type: number
|
// type: number
|
||||||
|
// -
|
||||||
|
// name: filter_action
|
||||||
|
// in: formData
|
||||||
|
// description: |-
|
||||||
|
// The action to be taken when a status matches this filter.
|
||||||
|
//
|
||||||
|
// Sample: warn
|
||||||
|
// type: string
|
||||||
|
// enum:
|
||||||
|
// - warn
|
||||||
|
// - hide
|
||||||
//
|
//
|
||||||
// security:
|
// security:
|
||||||
// - OAuth2 Bearer:
|
// - OAuth2 Bearer:
|
||||||
|
|
Loading…
Reference in New Issue