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
2017-07-21Move duplicate issue management to a serviceSean McGivern
2017-07-20Added slash command to close an issue as a duplicate. Closes #26372Ryan Scott
2017-07-07Remove /reassign quick actionToon Claes
/reassign should only work when multiple assignees are available. And since this is only the case for GitLab EE, remove it from CE. This was picked using 517c97eb12e44f354787313dd35ac7a1642f5b20 of gitlab-ee.
2017-06-20Ensure /reassign does not assign multiple usersToon Claes
Set the assignee to last user in the array if multiple assignees aren't allowed. Also, use `parse_params` where possible.
2017-06-20Make MergeRequest respond to assignee_ids & assignee_ids=Toon Claes
To make it simpler to assign users to an Issuable, make MergeRequest support the attribute `assignee_ids`.
2017-06-20Backport /reassign quick commandToon Claes
The /reassign quick command works even when no multiple assignees are allowed of there isn't any assignee yet. So for consistency, it's also be backported to CE. But it functions the same as the /assign quick action.
2017-06-20Backport issuable for assignee slash commands from EEToon Claes
Avoid conflicts when merge CE to EE by backporting code from EE. Instead of checking in `SlashCommands::InterpretService` what the issuable the type of the issuable is, ask the issuable if it is capable to do those thing and implement it in the issuable itself. The issuable will check if it's possible and if the licensed feature is available. This should also make it easier to ever add multiple assignees to MergeRequests.
2017-06-15Rename "Slash commands" to "Quick actions"Eric Eastwood
Fix https://gitlab.com/gitlab-org/gitlab-ce/issues/27070 Deprecate "chat commands" in favor of "slash commands" We looked for things like: - `slash commmand` - `slash_command` - `slash-command` - `SlashCommand`