Skip to content
Snippets Groups Projects
Commit 8bd1dd51 authored by Andrei Cioromila's avatar Andrei Cioromila
Browse files

feat(authsome): Update patch methods handling for xpub framework compliance

parent 6ce56ad2
No related branches found
No related tags found
3 merge requests!160Update staging with master features,!150Develop,!89Hin 1036
...@@ -226,12 +226,12 @@ async function applyAuthenticatedUserPolicy(user, operation, object, context) { ...@@ -226,12 +226,12 @@ async function applyAuthenticatedUserPolicy(user, operation, object, context) {
} }
if (operation === 'PATCH') { if (operation === 'PATCH') {
if (get(object, 'type') === 'collection') { if (get(object.current, 'type') === 'collection') {
return helpers.isOwner({ user, object }) return helpers.isOwner({ user, object: object.current })
} }
if (get(object, 'type') === 'fragment') { if (get(object.current, 'type') === 'fragment') {
return helpers.isOwner({ user, object }) return helpers.isOwner({ user, object: object.current })
} }
// allow reviewer to patch (accept/decline) his invitation // allow reviewer to patch (accept/decline) his invitation
......
...@@ -10313,7 +10313,7 @@ promise@^7.1.1: ...@@ -10313,7 +10313,7 @@ promise@^7.1.1:
dependencies: dependencies:
asap "~2.0.3" asap "~2.0.3"
   
prompt@^1.0.0, "prompt@github:flatiron/prompt#1c95d1d8d333b5fbc13fa5f0619f3dcf0d514f87": prompt@^1.0.0, prompt@flatiron/prompt#1c95d1d8d333b5fbc13fa5f0619f3dcf0d514f87:
version "1.0.0" version "1.0.0"
resolved "https://codeload.github.com/flatiron/prompt/tar.gz/1c95d1d8d333b5fbc13fa5f0619f3dcf0d514f87" resolved "https://codeload.github.com/flatiron/prompt/tar.gz/1c95d1d8d333b5fbc13fa5f0619f3dcf0d514f87"
integrity sha1-jlcSPDlquYiJf7Mn/Trtw+c15P4= integrity sha1-jlcSPDlquYiJf7Mn/Trtw+c15P4=
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment