Renamed OAuth scope

This got renamed since the API was communicated to us.

Contributes to issue CURA-8609.
This commit is contained in:
Ghostkeeper 2021-10-18 15:15:05 +02:00
parent 0d350b5f96
commit c9d53cbbde
No known key found for this signature in database
GPG key ID: D2A8871EE34EC59A

View file

@ -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)