Add beta warning banners to OAuth 1.0 and NTLM plugins

This commit is contained in:
Gregory Schier
2025-12-01 09:26:55 -08:00
parent 25d8357471
commit 6e4c167bfd
2 changed files with 22 additions and 0 deletions

View File

@@ -8,6 +8,17 @@ export const plugin: PluginDefinition = {
label: 'NTLM Auth',
shortLabel: 'NTLM',
args: [
{
type: 'banner',
color: 'info',
inputs: [
{
type: 'markdown',
content:
'NTLM is still in beta. Please submit any issues to [Feedback](https://yaak.app/feedback).',
},
],
},
{
type: 'text',
name: 'username',

View File

@@ -36,6 +36,17 @@ export const plugin: PluginDefinition = {
label: 'OAuth 1.0',
shortLabel: 'OAuth 1',
args: [
{
type: 'banner',
color: 'info',
inputs: [
{
type: 'markdown',
content:
'OAuth 1.0 is still in beta. Please submit any issues to [Feedback](https://yaak.app/feedback).',
},
],
},
{
name: 'signatureMethod',
label: 'Signature Method',