Browse Source

fix online drive

tags/2.0.0-beta.1
jyong 2 months ago
parent
commit
3797416fe0
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      api/controllers/console/datasets/rag_pipeline/datasource_auth.py

+ 1
- 1
api/controllers/console/datasets/rag_pipeline/datasource_auth.py View File

@@ -160,7 +160,7 @@ class DatasourceAuth(Resource):
def get(self, provider_id: str):
datasource_provider_id = DatasourceProviderID(provider_id)
datasource_provider_service = DatasourceProviderService()
datasources = datasource_provider_service.get_all_datasource_credentials_by_provider(
datasources = datasource_provider_service.list_datasource_credentials(
tenant_id=current_user.current_tenant_id,
provider=datasource_provider_id.provider_name,
plugin_id=datasource_provider_id.plugin_id,

Loading…
Cancel
Save