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
2014-02-14Add email aliases for usersJason Hollingsworth
Emails are used to associate commits with users. The emails are not verified and don't have to be valid email addresses. They are assigned on a first come, first serve basis. Notifications are sent when an email is added.
2014-01-22Make changes to testsDmitriy Zaporozhets
* project_with_code -> project * project -> ermpty_project Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2013-12-18Email on push mailer specDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2013-11-09Merge pull request #5571 from bke-drewb/emailDmitriy Zaporozhets
Fix minor errors/annoyances in email templates
2013-11-08Add specs for Email confirmationDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2013-11-08Fix minor errors/annoyances in email templatesDrew Blessing
There was some funny syntax in merge request email templates. There was a ! before the merge request number when there probably should be a #. This may be some carry over from markdown but should not be in email templates. There were also some capitalization discrepancies among the subject lines. For those OCD people out there I standardized the capitalization. :)
2013-10-08Fix the sigil for merge request emailsAbe Hassan
2013-09-12Enable UsersGroup observer, Add group_member methods to NotificationServiceDmitriy Zaporozhets
2013-08-26Fix mailer testsDmitriy Zaporozhets
2013-08-22Show iids for issues/mr in email subjectDmitriy Zaporozhets
2013-08-20Refactor access roles methodsDmitriy Zaporozhets
2013-07-18Merge Request on forked projectsIzaak Alpert
The good: - You can do a merge request for a forked commit and it will merge properly (i.e. it does work). - Push events take into account merge requests on forked projects - Tests around merge_actions now present, spinach, and other rspec tests - Satellites now clean themselves up rather then recreate The questionable: - Events only know about target projects - Project's merge requests only hold on to MR's where they are the target - All operations performed in the satellite The bad: - Duplication between project's repositories and satellites (e.g. commits_between) (for reference: http://feedback.gitlab.com/forums/176466-general/suggestions/3456722-merge-requests-between-projects-repos) Fixes: Make test repos/satellites only create when needed -Spinach/Rspec now only initialize test directory, and setup stubs (things that are relatively cheap) -project_with_code, source_project_with_code, and target_project_with_code now create/destroy their repos individually -fixed remote removal -How to merge renders properly -Update emails to show project/branches -Edit MR doesn't set target branch -Fix some failures on editing/creating merge requests, added a test -Added back a test around merge request observer -Clean up project_transfer_spec, Remove duplicate enable/disable observers -Ensure satellite lock files are cleaned up, Attempted to add some testing around these as well -Signifant speed ups for tests -Update formatting ordering in notes_on_merge_requests -Remove wiki schema update Fixes for search/search results -Search results was using by_project for a list of projects, updated this to use in_projects -updated search results to reference the correct (target) project -udpated search results to print both sides of the merge request Change-Id: I19407990a0950945cc95d62089cbcc6262dab1a8
2013-06-24Fix profile emails with new key routeDmitriy Zaporozhets
2013-06-22Send project transfer email to all members. Added specs for project move emailDmitriy Zaporozhets
2013-06-14Fix mailer testDmitriy Zaporozhets
2013-04-01fixed test using repo with commits but old factoryDmitriy Zaporozhets
2013-03-28Fix notify specs. Fix merge request close via apiDmitriy Zaporozhets
2013-03-19refactor emails a bit. Add email on ssh key creationDmitriy Zaporozhets
2013-03-19fix tests. added jquery.timeago.jsDmitriy Zaporozhets
2013-02-01Fix mailer testsDmitriy Zaporozhets
2013-01-18Add optional signup.Marin Jankovski
2013-01-15more tests fixedDmitriy Zaporozhets
2012-12-31Bit of cleanup and improving mailerDmitriy Zaporozhets
2012-11-24Fixing requests after namespaces. Fixed admin bug with access to projectDmitriy Zaporozhets
2012-11-13Remove backward compatibility of factories.Vincent Bonmalais
2012-10-13Make Note methods sanerRiyad Preukschas
2012-09-06Spec fixedAlex Denisov
2012-08-29Issue_status_changed email addedAlex Denisov
2012-08-27Send notifiation on create UserProject relation (access granted)Alex Denisov
2012-08-21Remove some duplication in the Notify mailerRobert Speicher
2012-08-11Fully embrace Ruby 1.9 hash syntaxRobert Speicher
Didn't bother with files in db/, config/, or features/
2012-08-06Update notifications mails and notify specs for GFMRiyad Preukschas
2012-07-02Disable issues sort. Recent issues on top. Fixed testsDmitriy Zaporozhets
2012-07-02Epic: Gitlab configuration with default valuesDmitriy Zaporozhets
2012-05-16Update Notify spec to use host set in config/gitlab.ymlRobb Kidd
Fixes failing tests introduced in pull request #824
2012-05-16Make Notify#new_merge_request_email resque friendly.Robb Kidd
2012-05-16Make Notify#new_issue_email resque friendly.Robb Kidd
2012-05-16Make Notify#note_wall_email resque friendlyRobb Kidd
Update method to take ids and then perform #finds itself during mailer queue worker kick-off.
2012-05-16Make Notify#note_commit_email resque friendlyRobb Kidd
Update method to take ids and then perform #finds itself during mailer queue worker kick-off. Also, the faux SHA1 cannot have underscores or it will not match the commit pattern defined in the routes.
2012-05-16Make Notify#note_issue_email resque friendlyRobb Kidd
Update method to take ids and then perform #finds itself during mailer queue worker kick-off.
2012-05-16Make Notify#note_merge_request_email resque friendlyRobb Kidd
Update method to take ids and then perform #finds itself during mailer queue worker kick-off.
2012-05-16Rename changed_mr_email to reassigned_mr_email & make resque friendlyRobb Kidd
#changed_merge_request_email was really sending emails about merge request reassignments. Updated method name to reflect that. Update method to take ids and then perform #finds itself during mailer queue worker kick-off.
2012-05-16Rename changed_issue_email to reassigned_issue_email & make resque friendlyRobb Kidd
#changed_issue_email was really sending emails about issue reassignments. Updated method name to reflect that. Update method to take ids and then perform #finds itself during mailer queue worker kick-off.
2012-05-16Update new_user_email to take id for User and perform find itself.Robb Kidd
2012-05-16Add specs for all of the emails.Robb Kidd
2012-05-16Add specs for Notify ActionMailer emails.Robb Kidd
Covers new user, new issue and wall note emails. Depends on email_spec (https://github.com/bmabey/email-spec/) for friendly matchers.