Bug 1429344 - Review requests in requests dropdown should link to MozReview or GitHub instead of Bugzilla details page#372
Bug 1429344 - Review requests in requests dropdown should link to MozReview or GitHub instead of Bugzilla details page#372dylanwh merged 1 commit intomozilla-bteam:masterfrom kyoshino:bug-1429344-external-requests
Conversation
dylanwh
left a comment
There was a problem hiding this comment.
requests.cgi is pretty nightmareish code. I can't even begin to understand why it is using positional rows and not using the type of $dbi->select that uses column names.
I'll write a new backend that is also performant.
|
Ah, one thing I've noticed is that the splinter review URL |
…Review or GitHub instead of Bugzilla details page
|
Instead of an extension list, exposed the |
| requestees.login_name, flags.modification_date, attachments.ispatch | ||
| cclist_accessible, bugs.reporter, bugs.reporter_accessible, | ||
| bugs.assigned_to, attachments.ispatch'); | ||
| bugs.assigned_to, attachments.mimetype'); |
There was a problem hiding this comment.
doesn't this need to also group by ispatch?
There was a problem hiding this comment.
There's already ispatch 2 lines above. Looks like it's a duplicate, so just changing it to mimetype.
Fix Bug 1429344 - Review requests in requests dropdown should link to MozReview or GitHub instead of Bugzilla details page
Description
attachments.mimetypefrom DB asattach_mimetypeattachments.ispatchfrom DB asattach_ispatchinstead ofispatchfor consistency (this field is not used in other templates so the change should be safe)