summaryrefslogtreecommitdiff
path: root/spec/mailers
Commit message (Collapse)AuthorAgeFilesLines
* Add optional signup.Marin Jankovski2013-01-181-0/+30
|
* more tests fixedDmitriy Zaporozhets2013-01-151-2/+3
|
* Bit of cleanup and improving mailerDmitriy Zaporozhets2012-12-311-1/+1
|
* Fixing requests after namespaces. Fixed admin bug with access to projectDmitriy Zaporozhets2012-11-231-3/+1
|
* Remove backward compatibility of factories.Vincent Bonmalais2012-11-131-20/+20
|
* Make Note methods sanerRiyad Preukschas2012-10-131-1/+1
|
* Spec fixedAlex Denisov2012-09-061-1/+1
|
* Issue_status_changed email addedAlex Denisov2012-08-291-0/+23
|
* Send notifiation on create UserProject relation (access granted)Alex Denisov2012-08-271-0/+20
|
* Remove some duplication in the Notify mailerRobert Speicher2012-08-201-3/+3
|
* Fully embrace Ruby 1.9 hash syntaxRobert Speicher2012-08-101-13/+13
| | | | Didn't bother with files in db/, config/, or features/
* Update notifications mails and notify specs for GFMRiyad Preukschas2012-08-061-6/+8
|
* Disable issues sort. Recent issues on top. Fixed testsDmitriy Zaporozhets2012-07-021-16/+12
|
* Epic: Gitlab configuration with default valuesDmitriy Zaporozhets2012-07-021-1/+1
|
* Update Notify spec to use host set in config/gitlab.ymlRobb Kidd2012-05-161-1/+1
| | | | Fixes failing tests introduced in pull request #824
* Make Notify#new_merge_request_email resque friendly.Robb Kidd2012-05-151-1/+1
|
* Make Notify#new_issue_email resque friendly.Robb Kidd2012-05-151-1/+1
|
* Make Notify#note_wall_email resque friendlyRobb Kidd2012-05-151-1/+1
| | | | | Update method to take ids and then perform #finds itself during mailer queue worker kick-off.
* Make Notify#note_commit_email resque friendlyRobb Kidd2012-05-151-2/+3
| | | | | | 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.
* Make Notify#note_issue_email resque friendlyRobb Kidd2012-05-151-1/+2
| | | | | Update method to take ids and then perform #finds itself during mailer queue worker kick-off.
* Make Notify#note_merge_request_email resque friendlyRobb Kidd2012-05-151-2/+6
| | | | | Update method to take ids and then perform #finds itself during mailer queue worker kick-off.
* Rename changed_mr_email to reassigned_mr_email & make resque friendlyRobb Kidd2012-05-151-3/+3
| | | | | | | | #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.
* Rename changed_issue_email to reassigned_issue_email & make resque friendlyRobb Kidd2012-05-151-4/+4
| | | | | | | | #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.
* Update new_user_email to take id for User and perform find itself.Robb Kidd2012-05-151-2/+2
|
* Add specs for all of the emails.Robb Kidd2012-05-151-33/+194
|
* Add specs for Notify ActionMailer emails.Robb Kidd2012-05-151-0/+82
Covers new user, new issue and wall note emails. Depends on email_spec (https://github.com/bmabey/email-spec/) for friendly matchers.