summaryrefslogtreecommitdiffstats
path: root/app/models/merge_request.rb
Commit message (Expand)AuthorAgeFilesLines
* Use sequence number as MergeRequest#title, for better display in breadcrumbsMarius Mathiesen2010-02-111-1/+1
* Add repository user as a watcher when creating a new repositoryJohan Sørensen2009-12-101-3/+3
* Move creation of favorites into controller. Also adding merge request to own...Marius Mathiesen2009-12-101-1/+6
* Change the way reviewers are notified about new merge requestsMarius Mathiesen2009-12-101-13/+19
* When a merge request is created (confirmed_by_user), each reviewer will have ...Marius Mathiesen2009-12-091-2/+11
* Make merge requests watchableMarius Mathiesen2009-12-071-0/+1
* Pedantic line-length and whitespace cleanupJohan Sørensen2009-11-301-13/+18
* MergeRequest's to_param now uses the sequence number instead of idMarius Mathiesen2009-11-301-3/+7
* Adding sequence number to merge requests, will replace id in URLs etc.Marius Mathiesen2009-11-301-3/+14
* Only notify reviewers about new merge requestsJohan Sørensen2009-11-191-80/+80
* MergeRequest#resolvable_by? should use the committerships with a review bitJohan Sørensen2009-11-191-1/+1
* Use a proper SQL query for MergeRequest.cascaded_comments so we can order the...Johan Sørensen2009-11-051-4/+6
* Show the render_if_ready box if a merge request isn't readyJohan Sørensen2009-11-041-1/+1
* Less cryptic MergeRequest#version_number(n)Johan Sørensen2009-11-041-1/+1
* Even less N+1 queries when fetching comments for a merge requestJohan Sørensen2009-11-041-1/+1
* Less N+1 queries when fetching comments for a merge requestJohan Sørensen2009-11-041-1/+3
* Display comments on both merge request and versions in the comment listingMarius Mathiesen2009-11-041-0/+5
* Don't create an extra version event when creating a new merge requestJohan Sørensen2009-10-221-14/+24
* Grant merge request creators the ability to change the statusJohan Sørensen2009-09-231-1/+1
* Include summary in MergeRequest#to_xml and use the status_tag as wellJohan Sørensen2009-09-011-2/+2
* MergeRequest.from_filter shouldn't make special exceptions for 'open'/'closed'Johan Sørensen2009-08-271-7/+2
* Add a MergeRequest::public scope, and make sure to use it consequentlyJohan Sørensen2009-08-271-0/+1
* Validate presence of summary field for new merge requests and migrate existin...Johan Sørensen2009-08-271-1/+1
* Merge commit 'qt/restructure-merge-request-view'Johan Sørensen2009-08-251-1/+1
|\
| * Use merge-request number for breadcrumb title instead of source branchTor Arne Vestbø2009-08-241-1/+1
* | Be able to set a default MergeRequestStatusJohan Sørensen2009-08-251-3/+11
* | dependent => :destroy for merge request versionsMarius Mathiesen2009-08-251-1/+1
* | Make sure MergeRequest#status_string is a string (for the "legacy" template)Johan Sørensen2009-08-241-1/+1
|/
* Losen the custom merge request states even further and allow for both open&cl...Johan Sørensen2009-08-241-53/+45
* Be able to turn new merge-request notifications on or off, per repositoryJohan Sørensen2009-07-241-3/+9
* The "Open" status tag should be capitalized, not downcased when confirmed_by_...Johan Sørensen2009-07-221-1/+1
* Make sure pending merge requests are never included in the scopes or #from_fi...Johan Sørensen2009-07-221-5/+5
* Refactor the merge-request tracking branches deletion to be in an after_destr...Johan Sørensen2009-07-221-9/+16
* Adding a processor for handling deletion of merge requests.Marius Mathiesen2009-07-171-0/+6
* Deletion of merge requests in Git should be allowed for local connections.Marius Mathiesen2009-07-161-0/+4
* The default status_tag of new merge requests should be openMarius Mathiesen2009-07-151-0/+2
* Calculate the merge base for a merge-request without timeoutsJohan Sørensen2009-07-151-1/+2
* Prettified the rendering of merge request status changes in comments and eventsJohan Sørensen2009-07-151-4/+5
* Add the comment in the event generated when updating a merge request with a n...Marius Mathiesen2009-07-141-4/+8
* Supplying a list of status tags per repository when listing merge requests:Marius Mathiesen2009-07-131-1/+6
* index the MergeRequest#status_tag as statusJohan Sørensen2009-07-131-1/+2
* Reformatted line-length, added a comment about future optimization andJohan Sørensen2009-07-131-4/+5
* Change the filtering on merge requests to use the status_tag.Marius Mathiesen2009-07-021-5/+20
* Let each project define its status tags for merge requestsMarius Mathiesen2009-07-021-37/+14
* Cache the commit status for 60 minutesMarius Mathiesen2009-07-011-1/+1
* Make sure the new mergerequest created Message has the correct sender in the ...Johan Sørensen2009-06-301-1/+3
* Moving the calculation of commits in a merge request version where it belongsMarius Mathiesen2009-06-301-5/+1
* Commit status for commits in a merge request:Marius Mathiesen2009-06-301-4/+7
* Push to the MergeRequest tracking repository without a timeoutJohan Sørensen2009-06-291-4/+7
* For legacy merge requests (that is, no versions yet) we need to use the endin...Marius Mathiesen2009-06-241-1/+6
* Support for merge requests without versions (legacy):Marius Mathiesen2009-06-241-1/+5
* Enabling edit/update in MergeRequestsController:Marius Mathiesen2009-06-241-3/+10
* Handle legacy merge requests (=no versions) with a different templateMarius Mathiesen2009-06-241-1/+1
* Merge request updates:Marius Mathiesen2009-06-241-3/+6
* Adding versions to merge request, track the last common base between source a...Marius Mathiesen2009-06-241-46/+107
* When migrating merge requests: handle situations where the ending commitMarius Mathiesen2009-06-241-2/+6
* Let users view commits from earlier versions of a merge requestMarius Mathiesen2009-06-241-2/+6
* Render a waiting message when viewing a merge request without a backend branch.Marius Mathiesen2009-06-241-1/+6
* Make some status tags "sticky", that is change the state machinestate.Marius Mathiesen2009-06-241-11/+24
* Adding a loose state (status_tag) to merge requests, adding state change to c...Marius Mathiesen2009-06-241-0/+11
* Add a migration facility for existing merge requestsMarius Mathiesen2009-06-241-1/+22
* Moved the authentication logic from SSH Client to pre-receive:Marius Mathiesen2009-06-241-0/+1
* Renamed the merge request branches to refs/merge-requests/<id>Marius Mathiesen2009-06-241-3/+3
* Let merge requests live their own life in a branchMarius Mathiesen2009-06-241-2/+26
* Put the merge requests in refs/reviews/<id>/sequence Marius Mathiesen2009-06-241-1/+1
* Push to an invisible branch in the target repository Marius Mathiesen2009-06-241-1/+2
* The name tracking_repository states its intention Marius Mathiesen2009-06-241-2/+2
* Instead of pushing the entire branch to the trackingMarius Mathiesen2009-06-241-1/+1
* When creating a merge request, a separate Git repositoryMarius Mathiesen2009-06-241-0/+7
* make sure the notifiable is always included in the notification_copyJohan Sørensen2009-06-221-1/+7
* Make a MergeRequest know if its ending commit (still) existsMarius Mathiesen2009-06-171-0/+4
* Index all merge requests, unless state is STATUS_PENDING_ACCEPTANCE_OF_TERMSJohan Sørensen2009-06-151-1/+1
* In stead of destroying messages when their notifiablesMarius Mathiesen2009-06-021-1/+8
* Added patch and xml format support for merge requests:Marius Mathiesen2009-05-281-0/+23
* Make MergeRequest#resolvable_by? work together with the annoying ways in whichJohan Sørensen2009-05-271-0/+1
* Adding support for re-opening merge requests.Marius Mathiesen2009-05-191-0/+14
* Be able to filter merge-requests on open/verifying, merged and rejectedJohan Sørensen2009-05-181-0/+15
* Adding an updated_by to merge requests. Marius Mathiesen2009-05-141-12/+12
* Adding a new state to merge requests: verifying. This is intended for telling...Marius Mathiesen2009-05-131-3/+33
* For compatibility with merge requests created before the Gitorious upgrade: s...Marius Mathiesen2009-05-111-1/+2
* Adding support for deleting your own merge requests:Marius Mathiesen2009-05-111-1/+1
* Changing the way signoff of merge requests work, due to a requirement that us...Marius Mathiesen2009-04-301-1/+21
* Be able to comment on merge requests as wellJohan Sørensen2009-04-291-0/+1
* Make oauth related attributes on Project attr_protectedJohan Sørensen2009-04-231-1/+2
* Sending along the user's login when requesting a request token via OAuth. Als...Marius Mathiesen2009-04-221-0/+1
* Made a first successful pass at OAuth integration with external siteMarius Mathiesen2009-04-221-3/+12
* Updated copyrights-blurb in all application filesJohan Sørensen2009-04-221-1/+5
* Letting the user accept the EULA on signup by presenting him with the current...Marius Mathiesen2009-04-221-1/+6
* Adding configurable merge request signoff information:Marius Mathiesen2009-04-221-11/+21
* Posting a request offsite after acceptance of termsMarius Mathiesen2009-04-221-2/+5
* Fixed merge request breadcrumb iconsJohan Sørensen2009-04-221-0/+4
* Reverse the commits_to_be_merge when there's an ending commitJohan Sørensen2009-04-221-2/+2
* Deliver merge request notifications to each committer in the target repositoryMarius Mathiesen2009-04-221-7/+9
* Moved the state machine logic in MergeRequest where it belongs, in a state ma...Marius Mathiesen2009-04-221-17/+40
* Deliver a status update when a merge request is resolved.Marius Mathiesen2009-04-221-5/+18
* Adding a reason to Merge Request. Set the reason when the status is updated (...Marius Mathiesen2009-04-221-2/+2
* Can a merge request transition to a given state? Added a method which returns...Marius Mathiesen2009-04-221-1/+21
* Adding notifiable support to messages:Marius Mathiesen2009-04-221-1/+1
* Removing action, test and view for Mailer's merge request notification. This ...Marius Mathiesen2009-04-221-4/+5
* [UNTESTED]: Creating a message to the repo owner when a new merge request is ...Marius Mathiesen2009-04-221-1/+7