Browse Source

fix notion internal setting (#6836)

tags/0.6.16
Jyong 1 year ago
parent
commit
af76381b98
No account linked to committer's email address
1 changed files with 0 additions and 2 deletions
  1. 0
    2
      api/controllers/console/auth/data_source_oauth.py

+ 0
- 2
api/controllers/console/auth/data_source_oauth.py View File



def get_oauth_providers(): def get_oauth_providers():
with current_app.app_context(): with current_app.app_context():
if not dify_config.NOTION_CLIENT_ID or not dify_config.NOTION_CLIENT_SECRET:
return {}
notion_oauth = NotionOAuth(client_id=dify_config.NOTION_CLIENT_ID, notion_oauth = NotionOAuth(client_id=dify_config.NOTION_CLIENT_ID,
client_secret=dify_config.NOTION_CLIENT_SECRET, client_secret=dify_config.NOTION_CLIENT_SECRET,
redirect_uri=dify_config.CONSOLE_API_URL + '/console/api/oauth/data-source/callback/notion') redirect_uri=dify_config.CONSOLE_API_URL + '/console/api/oauth/data-source/callback/notion')

Loading…
Cancel
Save