I am unable to make changes to my notification settings on this page.
{
"operationName": "UpdateNotificationSubscriptions",
"query": "mutation UpdateNotificationSubscriptions($subscriptions: [NotificationEnum!]!) {\n updateNotificationSubscriptions(subscriptions: $subscriptions)\n}",
"variables": {
"subscriptions": [
"UPDATED_EDIT",
"COMMENT_OWN_EDIT",
"DOWNVOTE_OWN_EDIT",
"FAILED_OWN_EDIT",
"COMMENT_COMMENTED_EDIT",
"COMMENT_VOTED_EDIT",
"FAVORITE_PERFORMER_EDIT",
"FAVORITE_STUDIO_EDIT",
"FAVORITE_STUDIO_SCENE",
"FAVORITE_PERFORMER_SCENE",
"FINGERPRINTED_SCENE_EDIT"
]
}
}
And I get the following response:
{
"errors": [
{
"message": "Not authorized",
"path": [
"updateNotificationSubscriptions"
]
}
],
"data": null
}
The same request works fine on fans.cc, where I get this response:
{
"data": {
"updateNotificationSubscriptions": true
}
}
I don’t know if it’s because I’m not an editor on stashdb yet, but I shouldn’t have to be a member to have authorization to change my own settings.