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-04-09[CE] Support multiple assignees for merge requestsOswaldo Ferreira
Backports https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/10161 (code out of ee/ folder).
2019-03-05Merge branch 'merge-dev-to-master' into 'master'John Jarvis
Merge dev.gitlab.org master into GitLab.com master Closes #2794, #2814, #2806, #2805, #2798, #2795, #2788, and #2787 See merge request gitlab-org/gitlab-ce!25746
2019-03-05Rename ambiguous association names in Ci::PipelineShinya Maeda
fix it ok Fix head pipeline
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-07Import CSV BackendHeinrich Lee Yu
Process CSV uploads async using a worker then email results
2018-12-21Add date range to milestone changed emailsHeinrich Lee Yu
Also refactored issues and MRs to use the same email template file
2018-12-13Add List-Id to notification emailsOlivier Crête
2018-12-12Merge branch ↵Nick Thomas
'54650-send-an-email-to-project-owners-when-a-mirror-update-fails' into 'master' Send a notification email on mirror update errors Closes #54650 See merge request gitlab-org/gitlab-ce!23595
2018-12-12Send a notification email on mirror update errorsAlejandro Rodríguez
The email is sent to project maintainers containing the last mirror update error. This will allow maintainers to set alarms and react accordingly.
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-12-06Use BFG object maps to clean projectsNick Thomas
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-11-02Add email for milestone changeChantal Rollison
2018-10-16Add IID headers to E-Mail notificationsLukas Eipert
These headers can be used to build URLs for API requests. Good examples would be Issues and Merge Requests
2018-09-24Ports new refactor from EE to CETiago Botelho
2018-09-21Correct Gitlab Capitalization in code filesMarcel Amirault
2018-09-11Disable existing offenses for the CodeReuse copsYorick Peterse
This whitelists all existing offenses for the various CodeReuse cops, of which most are triggered by the CodeReuse/ActiveRecord cop.
2018-09-06Automatically disable Auto DevOps for project upon first pipeline failureMayra Cabrera
2018-08-16Enable frozen in app/mailers/**/*.rbgfyoung
2018-07-27Put fallback reply-key address first in the References headerToon Claes
The References header is an ordered list of mails, and some clients only look at the last mail in the list to determine to which mail the mail is in reply to. Therefore, to be a less obtrusive as possible, put the fallback address first. Some info about the reply key lookup in the References header: https://docs.gitlab.com/ee/administration/reply_by_email.html#how-it-works
2018-07-06Disable public_send for our preview mailersLin 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-05-18Plural reason(s)Mark Chao
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-26Make avatar helpers available to emailsDouwe Maan
2018-04-10Merge branch 'master' into 'stuartnelson3/gitlab-ce-stn/issue-due-email'Sean McGivern
# Conflicts: # db/schema.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-30Merge branch 'master' into stuartnelson3/gitlab-ce-stn/issue-due-emailSean McGivern
2018-03-26Send notification emails when push to a merge requestYarNayar
Closes #23460
2018-03-26Send email to recipientsStuart Nelson
2018-03-07Use Project#full_name instead of name_with_namespaceDmitriy 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-02-02use Gitlab::UserSettings directly as a singleton instead of ↵Mario de la Ossa
including/extending it
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-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-13Make mail notifications of discussion notes In-Reply-To of each otherToon Claes
When a note is part of a discussion, the email sent out should be `In-Reply-To` the previous note in that discussion. Closes gitlab-org/gitlab-ce#36054
2017-09-23Send a confirmation email when the user adds a secondary email address. ↵Brett Walker
Utilizes the Devise `confirmable` capabilities. Issue #37385
2017-08-31`current_application_settings` belongs on `Gitlab::CurrentSettings`Sean McGivern
The initializers including this were doing so at the top level, so every object loaded after them had a `current_application_settings` method. However, if someone had rack-attack enabled (which was loaded before these initializers), it would try to load the API, and fail, because `Gitlab::CurrentSettings` didn't have that method. To fix this: 1. Don't include `Gitlab::CurrentSettings` at the top level. We do not need `Object.new.current_application_settings` to work. 2. Make `Gitlab::CurrentSettings` explicitly `extend self`, as we already use it like that in several places. 3. Change the initializers to use that new form.
2017-08-14Speed up Group#user_ids_for_project_authorizationsNick Thomas
2017-08-01Rename many path_with_namespace -> full_pathGabriel Mazetto
2017-07-27find_by_id -> find_by(:id, ...)Alexis Reigel
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-13use common devise layout and use heading styleAlexis Reigel