summaryrefslogtreecommitdiff
path: root/spec/services/award_emojis
Commit message (Collapse)AuthorAgeFilesLines
* Add latest changes from gitlab-org/gitlab@13-3-stable-eeGitLab Bot2020-08-201-0/+34
|
* Add latest changes from gitlab-org/gitlab@13-2-stable-eeGitLab Bot2020-07-204-4/+4
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-01-103-9/+9
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-12-123-0/+3
|
* Add service classes for mutating AwardEmojiLuke Duncalfe2019-08-213-0/+264
| | | | | | | | | | | | | | | | | | Adding, destroying and toggling emoji previously lacked services and instead were performed through methods called on Awardable models. This led to inconsistencies where relevant todos would be marked as done only when emoji were awarded through our controllers, but not through the API. Todos could also be marked as done when an emoji was being removed. Behaviour changes - Awarding emoji through the API will now mark a relevant Todo as done - Toggling an emoji off (destroying it) through our controllers will no longer mark a relevant Todo as done Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/63372
* Renaming AwardedEmojiFinder to a ServiceLuke Duncalfe2019-08-211-0/+25
This finder class acts more as a service, as it only returns mapped data. Renaming this class allows us to create a new AwardEmojiFinder without the ambiguity of there being two similarly-named finders. https://gitlab.com/gitlab-org/gitlab-ce/issues/63372