summaryrefslogtreecommitdiffstats
path: root/extensions/PhabBugz/lib/WebService.pm
AgeCommit message (Collapse)AuthorFilesLines
2018-12-05no bug - reformat all the code using the new perltidy rulesPerl Tidy1-95/+92
2018-09-12Bug 1487422 - Remove Phabricator section from MyDashboard and related ↵dklawren1-103/+2
WebService API
2018-07-27Bug 1478983 - WebService endpoint to check if a user can enter a bug into a ↵Mark Côté1-17/+53
given product There is some common code, which we will need again for another WebService call, that can be refactored into their own functions. This WebService endpoint takes a product name and user ID in the form `check_enter_bug/<product>/<user id>`. It returns an object with one attribute, `result`, that is set to 1 if the product exists and the user is allowed to enter bugs in it, or 0 otherwise.
2018-07-25no bug - Include Bugzilla::Error in PhabBugz's WebService.pm.Mark Côté1-0/+1
The ThrowUserError() calls in PhabBugz's WebService.pm were causing errors as Bugzilla::Error wasn't being imported.
2018-06-26Bug 1470966 - "Status" column in Phabricator dashboard isn't very usefuldklawren1-1/+0
2018-05-31Bug 1430905 - Remove legacy phabbugz code that is no longer neededdklawren1-275/+9
2018-05-24Bug 1462685 - Use Phabricators Draft functionality to allow sending of ↵dklawren1-1/+58
initial revision email after BMO has updated the policies
2018-05-11Bug 1440086 - Refactor PhabBugz extension code to use new User.pm module for ↵dklawren1-6/+4
better type checking
2018-05-09Revert "Bug 1440086 - Refactor PhabBugz extension code to use new User.pm ↵Dylan William Hardison1-4/+6
module for better type checking" This reverts commit 739676cf4b122cdec12981c2bc3a79c3f54aa7e4.
2018-05-08Bug 1440086 - Refactor PhabBugz extension code to use new User.pm module for ↵dklawren1-6/+4
better type checking
2018-04-26Bug 1454647 - Mirror all BMO groups as Phabricator projects and keep them in ↵dklawren1-1/+0
sync
2018-04-20Bug 1440828 - Phabricator review requests should show up on the BMO dashboardbyron jones1-5/+109
2018-01-03 Bug 1426518 - Revisions can optionally not have a bug id so we need to make ↵dklawren1-3/+3
it optional in the type constraints of Revision.pm
2018-01-03Bug 1427743 - legacy phabbugz API code errors when trying to set an inactive ↵dklawren1-2/+2
review flag
2017-12-19Bug 1409957 - Create polling daemon to query Phabricator for recent ↵David Lawrence1-1/+1
transcations and update bug data according to revision changes
2017-12-16Bug 1403777 - Migrate urlbase from params to localconfigDylan William Hardison1-2/+2
2017-12-05Revert "Bug 1409957 - Create polling daemon to query Phabricator for recent ↵Dylan William Hardison1-1/+1
transcations and update bug data according to revision changes" This reverts commit 7da8e374e0c96e10077690935e829b0c04fc82f4.
2017-11-29Bug 1409957 - Create polling daemon to query Phabricator for recent ↵dklawren1-1/+1
transcations and update bug data according to revision changes
2017-10-10Bug 1399593 - Add sync group comments during new revision creation as well ↵David Walsh1-10/+5
as push connector
2017-09-28Bug 1403584: Clear r+ in bug when reviewer is removed from the revision by ↵dklawren1-4/+11
the author via Change Reviewers (#251)
2017-09-14Bug 1399508 - Pass along transaction id to BMO API calls for linking back to ↵dklawren1-0/+2
the exact change in the revision history (#237)
2017-09-11Bug 1397927 - Add comment to bug when a revision is accepted/denied with the ↵dklawren1-7/+31
users real names (#233) Bug 1397927 - Add comment to bug when a revision is accepted/denied with the users real names * - Bug fixes * Wording changes.
2017-08-31Bug 1395346 - Allow setting obsolete to false for phabricator attachments ↵dklawren1-2/+8
when a user reclaims a revision (#227)
2017-08-30Revert "Bug 1395346 - Allow setting obsolete to false for phabricator ↵David Lawrence1-8/+2
attachments when a user reclaims a revision" This reverts commit c48fede1691feb1056cd21422716f297af9e7bc3.
2017-08-30Bug 1395346 - Allow setting obsolete to false for phabricator attachments ↵David Lawrence1-2/+8
when a user reclaims a revision
2017-08-30Bug 1393023: Approving a revision creates an r+ flag on the revision ↵dklawren1-8/+151
attachment in the associated bug (#219) Approving a revision creates an r+ flag on the revision attachment in the associated bug * - Working version - Splits accepted_users on ':' instead of accepting a list (phab issue)
2017-08-17Bug 1389372 - Add REST API endpoint to validate whether a BMO user ID can ↵David Walsh1-0/+38
see a given BMO bug
2017-08-11Bug 1382225 - Missing code from PhabBugz extension such as http basic auth ↵dklawren1-4/+16
support and other minor improvements
2017-07-31Bug 1383108 - Sync security groups with Phabricator push connectorDavid Walsh1-1/+2
r=dkl
2017-07-20Bug 1380727 - Update BMO Push Connector to Make Revisions Public when Bug ↵dklawren1-2/+2
Made Public
2017-07-19Bug 1380727 - Update BMO Push Connector to Make Revisions Public when Bug ↵David Walsh1-2/+3
Made Public
2017-07-07Bug 1367604 - BMO extension to apply security policies to Phabricator ↵dklawren1-0/+112
revisions as needed * - Updated based on dylans review - Fixed custom policy to instead allow projects and subscribers and then add BMO roles to the subscriber list - Some other bug fixes * fix lifetime of phabricator_url_re() Instead of passing the value (which depends on runtime configuration) pass in a reference. Also edit extensions/BMO/Extension.pm to allow %autodetect_attach_urls regex option to be a callback instead of just a plain regexp ref. * - Fixed regex in BMO extension to detect phabricator attachments - Use request_cache for useragent handle in Util.pm