[bugfix] Swagger: add missing filter_action param for v2 filter PUT (#3281)

This commit is contained in:
Vyr Cossont 2024-09-09 00:52:49 -07:00 committed by GitHub
parent 0595c83188
commit 100d660797
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 21 additions and 0 deletions

View file

@ -10462,6 +10462,16 @@ paths:
in: formData
name: expires_in
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:
- application/json
responses:

View file

@ -121,6 +121,17 @@ import (
//
// Sample: 86400
// 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:
// - OAuth2 Bearer: