Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-10-18Rename NoteObserver methods and clarify thingsRiyad Preukschas
2012-10-13Fix notification for notes on a wall.Robb Kidd
The fact that Notes on Walls have a noteable_type value of "nil" got lost in the refactoring of the observer.
2012-10-11Reduce complexity: replace case statement with method lookup.Robb Kidd
2012-10-11Separate observing of Note and MergeRequestsRobb Kidd
* Move is_assigned? and is_being_xx? methods to IssueCommonality This is behavior merge requests have in common with issues. Moved methods to IssueCommonality role. Put specs directly into merge_request_spec because setup differs for issues and MRs specifically in the "closed" factory to use. * Add MergeRequestObserver. Parallels IssueObserver in almost every way. Ripe for refactoring. * Rename MailerObserver to NoteObserver With merge request observing moved out of MailerObserver, all that was left was Note logic. Renamed to NoteObserver, added tests and updated application config for new observer names. Refactored NoteObserver to use the note's author and not rely on current_user. * Set current_user for MergeRequestObserver IssueObserver and MergeRequestObserver are the only observers that need a reference to the current_user that they cannot look up on the objects they are observing.
2012-09-26Comment removedAlex Denisov
2012-09-20master mergedAlex Denisov
2012-09-15A bit of test refactoringrandx
2012-09-12Fix observer testrandx
2012-09-10Merge 'master' branchAlex Denisov
2012-09-10User left project event addedAlex Denisov
2012-09-10User joined project event addedAlex Denisov
2012-09-03test_after_commit gem addedAlex Denisov
2012-09-03After commit instead of after_updateAlex Denisov
2012-08-29Notification sends to issue author and assignee if issue being reopened or ↵Alex Denisov
closed
2012-08-29Use similar interface to access gitoliterandx
Simplified gitolite handle logic Stubn over monkeypatch Stub only specific methods in Gitlab:Gitolite Moved grach auth to lib added specs for keys observer removes SshKey role
2012-08-27Send notification on update UserProject relation (access changed)Alex Denisov
2012-08-27Send notifiation on create UserProject relation (access granted)Alex Denisov
2012-08-25Move observer specs out of spec/models into spec/observersRobert Speicher