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:
Jakub Kołodziejczak
2022-11-01 22:06:02 +01:00
committed by GitHub
parent ceb7d36dee
commit d1df36affa
+3 -1
View File
@@ -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": {