summaryrefslogtreecommitdiff
path: root/app/services/system_note_service.rb
Commit message (Collapse)AuthorAgeFilesLines
...
* woo hoo - getting there with the cross-reference issue. Should fix the ↵James Lopez2016-02-121-4/+11
| | | | problem and updated spec
* WIP - fix and spec for cross reference issue with forksJames Lopez2016-02-041-2/+2
|
* Use `to_reference` in system notes.Douwe Maan2015-12-241-1/+1
|
* Link to milestone in "Milestone changed" system noteDouwe Maan2015-12-241-2/+2
|
* Backport JIRA serviceDrew Blessing2015-12-181-2/+7
|
* Satisfy Douwe MaanZeger-Jan van de Weg2015-12-071-1/+1
|
* Merge branch 'master' into merge-if-greenZeger-Jan van de Weg2015-12-071-1/+19
|\
| * Proper cross-project references when MR is closed by issueDouwe Maan2015-11-301-1/+1
| |
| * Monkey patching TaskList::Item is no longer required. #2296Rubén Dávila2015-11-201-1/+2
| |
| * Generate system note after Task item has been updated on Issue or Merge ↵Ruben Davila2015-11-191-0/+17
| | | | | | | | | | | | | | | | | | | | | | | | Request. #2296 Everytime the User check or uncheck a Task Item from the Issue or Merge Request description, a new update is going to be added to the activity logs of the Issue or Merge Request. Note that when using the edit form, you can only update the Task item status or add/delete/modify existing ones. Doing both actions is not fully supported.
* | Button fixZeger-Jan van de Weg2015-12-071-1/+1
| |
* | Incorporate feedbackZeger-Jan van de Weg2015-12-051-3/+3
| |
* | Specs for 'Merge When Build Succeeds'Zeger-Jan van de Weg2015-12-021-1/+1
| |
* | Refactor MergeWhenBuildSucceedsService and incorporate feedbackZeger-Jan van de Weg2015-11-231-2/+2
| |
* | API support, incorporated feedbackZeger-Jan van de Weg2015-11-181-1/+1
| |
* | Merge when build succeedsZeger-Jan van de Weg2015-11-021-0/+14
|/
* Clean up MR refresh service somewhat.dm-issue-3140Douwe Maan2015-10-211-1/+1
|
* Reorder system note verb to say "Restored source branch X" instead of ↵Stan Hu2015-10-161-2/+2
| | | | "Source branch X restored"
* Improve SystemNote interface for branch add/restore caseStan Hu2015-10-151-3/+9
|
* Add a system note and update relevant merge requests when a branch is ↵Stan Hu2015-10-151-0/+19
| | | | | | | | | | | deleted or re-added If a branch is deleted with an open merge request, amended offline, and then pushed again, GitLab doesn't bother to update the merge request even though the last commit ID and/or code may have changed. This MR ensures that each push will update any relevant merge requests and adds a system note if this happens as well. Closes #2926
* Fix hooks for web based events with external issue referencesDaniel Gerhardt2015-06-141-1/+3
| | | | | | | The creation of cross references for external issues (which would fail) is now prevented. Fixes #1650, GH-9333.
* Support editing target branch of merge requestStan Hu2015-05-291-0/+19
| | | | | Closes https://github.com/gitlabhq/gitlabhq/issues/7105 See: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/130
* Merge branch 'rs-to_reference' into 'master'Dmitriy Zaporozhets2015-05-271-42/+18
|\ | | | | | | | | | | | | | | Add to_reference method to referable models Now there is a single source of information for which attribute a model uses to be referenced, and its special character. See merge request !641
| * More SystemNoteService cleanuprs-to_referenceRobert Speicher2015-05-261-42/+18
| |
* | Add a note when an Issue or Merge Request's title changesRobert Speicher2015-05-261-0/+19
|/
* Refactor SystemNoteService.cross_reference_disallowed?Robert Speicher2015-05-111-6/+13
|
* Update SystemNoteService method naming conventionsRobert Speicher2015-05-111-68/+64
| | | | | Now the verb comes first, and there is no restriction on singular/plural.
* Remove legacy special case for emphasized reference notesRobert Speicher2015-05-111-13/+9
|
* Add a SystemNoteService classRobert Speicher2015-05-111-0/+304
There's a lot of code in the Note model that only deals with creating system notes, so we're going to split that into its own class.