Support Workforce bearer token as alternative to email/password OAuth
Adds bearer_token secret field — if configured, the auth service uses it directly and skips the OAuth password grant entirely. Falls back to email/password flow if no token is set. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
5053b37adf
commit
e758add8ae
2 changed files with 20 additions and 10 deletions
|
|
@ -30,7 +30,7 @@ export const INTEGRATIONS = {
|
|||
workforce: {
|
||||
name: 'Workforce',
|
||||
configFields: ['base_url', 'sync_hours'],
|
||||
secretFields: ['email', 'password'],
|
||||
secretFields: ['bearer_token', 'email', 'password'],
|
||||
},
|
||||
smtp: {
|
||||
name: 'SMTP Email',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue