From c9d53cbbde38fa978351d134cebc991ade7287db Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Mon, 18 Oct 2021 15:15:05 +0200 Subject: [PATCH] Renamed OAuth scope This got renamed since the API was communicated to us. Contributes to issue CURA-8609. --- cura/API/Account.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cura/API/Account.py b/cura/API/Account.py index 86cd094f11..f922c89977 100644 --- a/cura/API/Account.py +++ b/cura/API/Account.py @@ -59,9 +59,9 @@ class Account(QObject): updatePackagesEnabledChanged = pyqtSignal(bool) CLIENT_SCOPES = "account.user.read drive.backup.read drive.backup.write packages.download " \ - "packages.rating.read packages.rating.write connect.cluster.read connect.cluster.write " \ + "packages.rating.read packages.rating.write connect.cluster.read connect.cluster.write connect.material.write " \ "library.project.read library.project.write cura.printjob.read cura.printjob.write " \ - "cura.mesh.read cura.mesh.write cura.material.write" + "cura.mesh.read cura.mesh.write" def __init__(self, application: "CuraApplication", parent = None) -> None: super().__init__(parent)