mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-19 08:01:25 +00:00
fix(backend): extend default scope set for slack resource (#848)
usecase: > as a windmill user I want to provide email of user to which slack direct message should be send rationale: https://api.slack.com/methods/users.lookupByEmail needs to be used. it requires `users:read.email` (which needs to be acquired together with `users:read` - more info: https://api.slack.com/scopes/users:read.email)
This commit is contained in:
committed by
GitHub
parent
ceb7d36dee
commit
d1df36affa
@@ -25,7 +25,9 @@
|
||||
"auth_url": "https://slack.com/oauth/authorize",
|
||||
"token_url": "https://slack.com/api/oauth.access",
|
||||
"scopes": [
|
||||
"chat:write:user"
|
||||
"chat:write:user",
|
||||
"users:read",
|
||||
"users:read.email"
|
||||
]
|
||||
},
|
||||
"gsheets": {
|
||||
|
||||
Reference in New Issue
Block a user