Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions providers/fab/provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,20 @@ config:
fab:
description: This section contains configs specific to FAB provider.
options:
cookie_secure:
description: |
Cookie with the secure attribute is only sent to the server with an HTTPS connection.
version_added: 2.4.0
type: boolean
example: ~
default: "False"
cookie_samesite:
description: |
Whether the cookie is restricted to a first-party or same-site context.
version_added: 2.4.0
type: string
example: ~
default: "Lax"
navbar_color:
description: |
Define the color of navigation bar
Expand Down
14 changes: 14 additions & 0 deletions providers/fab/src/airflow/providers/fab/get_provider_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,20 @@ def get_provider_info():
"fab": {
"description": "This section contains configs specific to FAB provider.",
"options": {
"cookie_secure": {
"description": "Cookie with the secure attribute is only sent to the server with an HTTPS connection.\n",
"version_added": "2.4.0",
"type": "boolean",
"example": None,
"default": "False",
},
"cookie_samesite": {
"description": "Whether the cookie is restricted to a first-party or same-site context.\n",
"version_added": "2.4.0",
"type": "string",
"example": None,
"default": "Lax",
},
"navbar_color": {
"description": "Define the color of navigation bar\n",
"version_added": "2.2.0",
Expand Down