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
2021-08-19Add latest changes from gitlab-org/gitlab@14-2-stable-eev14.2.0-rc42GitLab Bot
2021-05-19Add latest changes from gitlab-org/gitlab@13-12-stable-eev13.12.0-rc42GitLab Bot
2021-04-21Add latest changes from gitlab-org/gitlab@13-11-stable-eev13.11.0-rc43GitLab Bot
2021-03-16Add latest changes from gitlab-org/gitlab@13-10-stable-eev13.10.0-rc40GitLab Bot
2020-12-17Add latest changes from gitlab-org/gitlab@13-7-stable-eev13.7.0-rc42GitLab Bot
2020-10-21Add latest changes from gitlab-org/gitlab@13-5-stable-eev13.5.0-rc42GitLab Bot
2020-08-20Add latest changes from gitlab-org/gitlab@13-3-stable-eeGitLab Bot
2020-05-26Add latest changes from gitlab-org/security/gitlab@13-0-stable-eeGitLab Bot
2020-02-27Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-02-06Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-29Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-18Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-17Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-13Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-10Remove ignore_column occurence in CE codeDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2019-08-30Use self.ignored_columns += instead of =Stan Hu
This is to accomodate prepended modules.
2019-08-29Remove dependency on IgnorableColumn concerndineshpanda
2019-06-05Simplify notification check for participatingHeinrich Lee Yu
2019-03-28Inherit from ApplicationRecord instead of ActiveRecord::BaseNick Thomas
2018-12-01reorder notification settings by noisy-nessC.J. Jameson
fixes !54609
2018-08-14Move N_ calls into separate filesMark Chao
These are dynamic translations, so has to be marked explicitly using `N_`, but they are not used in runtime, so can exist in separate file. https://github.com/grosser/gettext_i18n_rails#unfound-translations-with-rake-gettextfind
2018-08-14Add email_events to replace EMAIL_EVENTS because it needs to be dynamic,Mark Chao
allowing override for EE.
2018-07-27Enable frozen string in app/models/*.rbgfyoung
Partially addresses #47424.
2018-07-12Allow to toggle notifications for issues due soonFelipe Artur
2018-03-30Only send issue due emails to participants and custom subscribersSean McGivern
2018-03-26Send notification emails when push to a merge requestYarNayar
Closes #23460
2017-08-08Re-enable SqlInjection and CommandInjectionBrian Neel
2017-07-31Remove events column from notification settingsSean McGivern
This was migrated to separate columns in 9.4, and now just needs to be removed for real.
2017-06-28Fix current feature related specsTiago Botelho
2017-06-15Deserialise existing custom notification settingsSean McGivern
Create a post-deployment migration to update all existing notification settings with at least one custom level enabled to the new format. Also handle the same conversion when updating settings, to catch any stragglers.
2017-06-15Add columns for custom notification settingsSean McGivern
Add columns for each custom notification level, defaulting to null. Read from those columns if non-null, otherwise fall back to the serialized column. Writing will write to the new column if `events` isn't manually set.
2017-06-07Added Cop to blacklist polymorphic associationsYorick Peterse
One should really use a separate table instead of using polymorphic associations. See https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/11168 for more information.
2017-04-03Quiet pipeline emailsSean McGivern
1. Never send a pipeline email to anyone other than the user who created the pipeline. 2. Only send pipeline success emails to people with the custom notification setting for enabled. Watchers and participants will never receive this. 3. When custom settings are unset (for new settings and legacy ones), act as if failed_pipeline is set.
2017-02-23Enable Style/MutableConstantDouwe Maan
2017-01-05Introduce EXCLUDED_WATCHER_EVENTS to exclude eventsLin Jen-Shin
for watchers. Feedback: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/8176#note_20920905
2016-10-17Revert "Split notification integration into another branch"Lin Jen-Shin
This reverts commit 1404aa8677969a03ed56e8f8350257f317f576d8.
2016-09-14Split notification integration into another branchLin Jen-Shin
2016-09-13Try to integrate the email into notification systemLin Jen-Shin
2016-07-07Exclude projects pending delete from notificationsSean McGivern
If the Sidekiq job fails for some reason, a project can be 'stuck' pending deletion. The project can't be viewed, so it shouldn't be available through the notification settings association as this will throw an exception when we try to show the link.
2016-06-15Implement custom notification level optionsFelipe Artur
2016-06-10Remove notification level from user modelFelipe Artur
2016-06-07Notifications dropdown on project page now has descriptionsPhil Hughes
This is part of #12758
2016-05-09Remove the annotate gem and delete old annotationsJeroen van Baarsen
In 8278b763d96ef10c6494409b18b7eb541463af29 the default behaviour of annotation has changes, which was causing a lot of noise in diffs. We decided in #17382 that it is better to get rid of the whole annotate gem, and instead let people look at schema.rb for the columns in a table. Fixes: #17382
2016-05-06Annotate the modelsZeger-Jan van de Weg
2016-04-11Use Hash instead of Array on NotificationSetting#level enumDouglas Barbosa Alexandre
2016-04-08Use default_value_for to set default NotificationSetting#levelDouglas Barbosa Alexandre
2016-03-30Refactor creating notification setting with defaultsDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2016-03-30Introduce NotificationSetting to user interfaceDmitriy Zaporozhets
* visiting project will create notification setting if missing * change notification setting per project even without membership * use notification settings instead of membership on profile page Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2016-03-30Introduce NotificationSetting modelDmitriy Zaporozhets
It will hold notification setting per group or per project. It will allow get rid of notification level stored in Member model Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>