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-04-13Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-04-03Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-31Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2018-10-04Fix N+1 for notification recipients in subscribersSean McGivern
2018-08-07Enable more frozen string in app/models/**/*.rbgfyoung
Partially addresses #47424.
2017-10-31Load participants asyncEric Eastwood
2017-07-06Added Cop to blacklist the use of `dependent:`Yorick Peterse
This is allowed for existing instances so we don't end up 76 offenses right away, but for new code one should _only_ use this if they _have_ to remove non database data. Even then it's usually better to do this in a service class as this gives you more control over how to remove the data (e.g. in bulk).
2017-06-21Enable Style/DotPosition Rubocop :cop:Grzegorz Bizon
2016-11-17Allow users to subscribe to a group label at group or project levelDouglas Barbosa Alexandre
2016-11-17Allow subscriptions to be created without a projectDouglas Barbosa Alexandre
2016-11-17Remove default value for `project` argument on subscribable concernDouglas Barbosa Alexandre
2016-11-17Refactoring Subscribable concern to accept a projectDouglas Barbosa Alexandre
2016-05-12Add API endpoints for un/subscribing from/to a labelAhmad Sherif
Closes #15638
2016-03-15Improving the original label-subscribing implementationRémy Coutable
1. Make the "subscribed" text in Issuable sidebar reflect the labels subscription status 2. Current user mut be logged-in to toggle issue/MR/label subscription
2016-03-15Original implementation to allow users to subscribe to labelsTimothy Andrew
1. Allow subscribing (the current user) to a label - Refactor the `Subscription` coffeescript class - The main change is that it accepts a container, and conducts all DOM queries within its scope. We need this because the labels page has multiple instances of `Subscription` on the same page. 2. Creating an issue or MR with labels notifies users subscribed to those labels - Label `has_many` subscribers through subscriptions. 3. Adding a label to an issue or MR notifies users subscribed to those labels - This only applies to subscribers of the label that has just been added, not all labels for the issue.