diff options
author | dklawren <dklawren@users.noreply.github.com> | 2017-10-11 18:13:50 +0200 |
---|---|---|
committer | David Walsh <davidwalsh83@gmail.com> | 2017-10-11 18:13:50 +0200 |
commit | 7749b42e49155d6a905a8d16b2f53f965633e9f9 (patch) | |
tree | af3a02f6bf9de7c7a6784032ea6dab5a8b08e94d /extensions | |
parent | 191a5fc2fbdba570d4d3b69a944dcec3366973b5 (diff) | |
download | bugzilla-7749b42e49155d6a905a8d16b2f53f965633e9f9.tar.gz bugzilla-7749b42e49155d6a905a8d16b2f53f965633e9f9.tar.xz |
Bug 1407617 - When making a phab revision public, the edit policy also needs to be set to 'users' (#261)
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/PhabBugz/lib/Util.pm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/extensions/PhabBugz/lib/Util.pm b/extensions/PhabBugz/lib/Util.pm index 8fa3b620b..95b2b1598 100644 --- a/extensions/PhabBugz/lib/Util.pm +++ b/extensions/PhabBugz/lib/Util.pm @@ -184,6 +184,10 @@ sub make_revision_public { { type => 'view', value => 'public' + }, + { + type => 'edit', + value => 'users' } ], objectIdentifier => $revision_phid |