(feat:connectors) type as connector:file

This commit is contained in:
ManishMadan2882
2025-09-09 00:00:58 +05:30
parent 6366663f03
commit b2b9670a23
2 changed files with 3 additions and 3 deletions

View File

@@ -173,7 +173,7 @@ class ConnectorSources(Resource):
return make_response(jsonify({"success": False}), 401)
user = decoded_token.get("sub")
try:
sources = sources_collection.find({"user": user, "type": "connector"}).sort("date", -1)
sources = sources_collection.find({"user": user, "type": {"$regex": "^connector:"}}).sort("date", -1)
connector_sources = []
for source in sources:
connector_sources.append({