Skip to content

Commit

Permalink
now I am the owner
Browse files Browse the repository at this point in the history
  • Loading branch information
vemonet committed Apr 8, 2024
1 parent b18aa23 commit 32ea899
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ It aims to enable data owners and data scientists to:
* The DCR will be automatically created with a data schema corresponding to the selected cohorts, generated from the metadata provided by the data owners.
* The data scientist can then access their DCR in Decentriq, write the code for their analysis, and request computation of this code on the provisioned cohorts.

> [!WARNING]
>
> If you logged in with a Decentriq user that does not have access to the Cohort Explorer, and need to re-login with another user: you will need to clear cache and cookies. Because Auth0 will keep your login in mind for some time, and it can be quite tricky to reset (they don't give the tools for managing that properly).
## 🗺️ Technical overview

This platform is composed of 3 main components:
Expand Down
3 changes: 2 additions & 1 deletion backend/src/decentriq.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ def create_provision_dcr(user: Any, cohort: Cohort) -> dict[str, Any]:
builder = (
AnalyticsDcrBuilder(client=client)
.with_name(dcr_title)
.with_owner(user["email"])
# .with_owner(user["email"])
.with_owner(settings.decentriq_email)
.with_description(f"A data clean room to provision the data for the {cohort.cohort_id} cohort")
)

Expand Down

0 comments on commit 32ea899

Please sign in to comment.