Skip to content

Commit 6e4c167

Browse files
committed
Add beta warning banners to OAuth 1.0 and NTLM plugins
1 parent 25d8357 commit 6e4c167

2 files changed

Lines changed: 22 additions & 0 deletions

File tree

plugins/auth-ntlm/src/index.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,17 @@ export const plugin: PluginDefinition = {
88
label: 'NTLM Auth',
99
shortLabel: 'NTLM',
1010
args: [
11+
{
12+
type: 'banner',
13+
color: 'info',
14+
inputs: [
15+
{
16+
type: 'markdown',
17+
content:
18+
'NTLM is still in beta. Please submit any issues to [Feedback](https://yaak.app/feedback).',
19+
},
20+
],
21+
},
1122
{
1223
type: 'text',
1324
name: 'username',

plugins/auth-oauth1/src/index.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,17 @@ export const plugin: PluginDefinition = {
3636
label: 'OAuth 1.0',
3737
shortLabel: 'OAuth 1',
3838
args: [
39+
{
40+
type: 'banner',
41+
color: 'info',
42+
inputs: [
43+
{
44+
type: 'markdown',
45+
content:
46+
'OAuth 1.0 is still in beta. Please submit any issues to [Feedback](https://yaak.app/feedback).',
47+
},
48+
],
49+
},
3950
{
4051
name: 'signatureMethod',
4152
label: 'Signature Method',

0 commit comments

Comments
 (0)