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
2019-03-05Resolve conflicts in spec/mailers/notify_spec.rbStan Hu
2019-03-04Merge dev master into GitLab.com masterYorick Peterse
2019-02-27Show header and footer system messages in emailAlexandru Croitor
* Add email_header_and_footer_enabled flag to appearances table * Set email_header_and_footer_enabled default value to false * Add checkbox to appearance to toggle show header and footer in emails * Add email_header_and_footer_enabled to allowed params in controller * Add header and footer messages to the html and text email layouts * Remove the color styling for emails header and footer * Add empty_mailer layout for emails without layout, to have the header and footer applied
2019-02-20Remove link after issue move when no permissionsJarka Košanová
Don't show new issue link after move when a user does not have permissions to display the new issue
2019-01-31Use `sanitize_name` to sanitize URL in user full nameKushal Pandya
2019-01-24Enable the Layout/ExtraSpacing copRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-01-07Remove caching of CSV fileHeinrich Lee Yu
Load whole file in memory to simplify code
2019-01-07Import CSV BackendHeinrich Lee Yu
Process CSV uploads async using a worker then email results
2018-12-20Always use colon at end of discussion notification email headlineDouwe Maan
2018-12-11Fix a potential frozen string error in app/mailers/notify.rbRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-12-10Fix a frozen string error in app/mailers/notify.rbRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-11-29Merge branch 'security-guest-comments' into 'master'Cindy Pallares
[master]Fixed ability to comment on and edit/delete comments on locked or confidential issues See merge request gitlab/gitlabhq!2612
2018-09-06Automatically disable Auto DevOps for project upon first pipeline failureMayra Cabrera
2018-07-16Update notification specs after renaming a classGrzegorz Bizon
2018-07-11Resolve "Rename the `Master` role to `Maintainer`" BackendMark Chao
2018-07-09This test was copied from EELin Jen-Shin
2018-07-06Move spec/mailers/previews to app/mailers/previewsLin Jen-Shin
2018-06-20Notify only when unmergeable due to conflictMark Chao
There is still the edge case when 'no commits' changes to 'conflict' would not trigger notification, which we ignore for now. Calling can_be_merged? can cause exception (e.g. non-UTF8) Ignore those by rescueing. Remove unmergeable_reason as now only conflict is notified Update spec
2018-06-03Replace have_html_espaced_body_text after 517598baTakuya Noguchi
2018-06-03Revert "Add a new have_html_escaped_body_text that match an HTML-escaped text"Takuya Noguchi
This reverts commit 517598ba10793efa02cb90379f78ab97c9c5b25d.
2018-05-31Fix merge request unmergeable notification email plural interpolationMark Chao
2018-05-24Merge branch 'mr-conflict-notification' into 'master'Douwe Maan
MR unmergeable notification See merge request gitlab-org/gitlab-ce!18042
2018-05-18Plural reason(s)Mark Chao
2018-05-17Resolve "Opening Project with invite but without accepting leads to 404 ↵🙈 jacopo beschi 🙉
error page"
2018-05-17Notify with email when merge request became unmergeablelulalala
Display MR unmergeable reasons
2018-05-07Backport 5480-epic-notifications from EEMario de la Ossa
2018-04-08Fix undefined method `one?` when pushing to an existing merge requestStan Hu
An untested code path was triggering an Exception because Fixnum doesn't have `one?` implemented in Rails, while arrays and collections do. Closes #45152
2018-04-04Add custom additonal email text to all emailsEric Eastwood
Fix https://gitlab.com/gitlab-org/gitlab-ee/issues/4474 Conflicts: db/schema.rb ee/app/controllers/ee/admin/application_settings_controller.rb ee/app/helpers/ee/application_settings_helper.rb ee/app/models/ee/application_setting.rb ee/app/models/license.rb ee/app/views/layouts/service_desk.html.haml ee/app/views/notify/approved_merge_request_email.html.haml ee/app/views/notify/service_desk_new_note_email.text.erb ee/app/views/notify/service_desk_thank_you_email.text.erb ee/app/views/notify/unapproved_merge_request_email.html.haml ee/lib/ee/api/entities.rb ee/spec/controllers/admin/application_settings_controller_spec.rb ee/spec/models/application_setting_spec.rb ee/spec/requests/api/settings_spec.rb lib/api/settings.rb spec/mailers/previews/notify_preview.rb
2018-04-03Fix body of email when commits are pushed to an MRSean McGivern
This was sending the current user, which is the recipient! It should be the user who pushed the commits.
2018-03-28Fix unapproved unassigned MR email erroring outEric Eastwood
Fix https://gitlab.com/gitlab-org/gitlab-ee/issues/3092 Conflicts: ee/app/views/notify/unapproved_merge_request_email.html.haml spec/mailers/notify_spec.rb
2018-03-05Replace deprecated name_with_namespace with full_name in app and specDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2018-02-23Add DNS verification to Pages custom domainsNick Thomas
2018-02-19Resolve "group request membership mail with too long list of "To:""🙈 jacopo beschi 🙉
2018-01-31Enable RuboCop Style/RegexpLiteralTakuya Noguchi
2018-01-17Initial work to add notification reason to emailsMario de la Ossa
Adds `#build_notification_recipients` to `NotificationRecipientService` that returns the `NotificationRecipient` objects in order to be able to access the new attribute `reason`. This new attribute is used in the different notifier methods in order to add the reason as a header: `X-GitLab-NotificationReason`. Only the reason with the most priority gets sent.
2017-12-22Replace '.team << [user, role]' with 'add_role(user)' in specsblackst0ne
2017-12-13Make discussion mail References all notes in the discussionToon Claes
When a note is part of a discussion, the email sent out will be `In-Reply-To` the previous note in that discussion. It also `References` all the previous notes in that discussion, and the original issue. Closes gitlab-org/gitlab-ce#36054.
2017-12-01Stop calling #strip in a commit title in Notify specsRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-11-13Fix image diff notes emailFelipe Artur
2017-10-09Don't show an "Unsubscribe" link in snippet comment notificationsRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-09-23Send a confirmation email when the user adds a secondary email address. ↵Brett Walker
Utilizes the Devise `confirmable` capabilities. Issue #37385
2017-09-01Remove some empty lines from notify specsGrzegorz Bizon
2017-09-01Optimize notification emails specsGrzegorz Bizon
2017-08-11Enable the RSpec/HookArgument cop and auto-correct offensesRobert Speicher
2017-08-03Change all `:empty_project` to `:project`Robert Speicher
2017-07-27notification email on add new gpg keyAlexis Reigel
2017-07-05Create and use project path helpers that only need a project, no namespaceDouwe Maan
2017-06-21Enable Style/DotPosition Rubocop :cop:Grzegorz Bizon
2017-06-14Correct RSpec/SingleLineHook cop offensesRobert Speicher
2017-05-25Bugfix: Always use the default language when generating emails.Ruben Davila
There was a race condition issue when the application was generating an email and was using a language that was previously being used in other request.