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-05-05Multiple issue assignee: resolve conflicts after merging upstreamValery Sizov
2017-05-05Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ce into mia_backort[ci ↵Valery Sizov
skip]
2017-05-04Display slash commands outcome when previewing MarkdownRares Sfirlogea
Remove slash commands from Markdown preview and display their outcome next to the text field. Introduce new "explanation" block to our slash commands DSL. Introduce optional "parse_params" block to slash commands DSL that allows to process a parameter before it is passed to "explanation" or "command" blocks. Pass path for previewing Markdown as "data" attribute instead of setting a variable on "window".
2017-05-04[Multiple issue assignee]: reslving some conflictsValery Sizov
2017-05-04Backport of multiple_assignees_feature [ci skip]Valery Sizov
2017-04-28Add board_move slash commandAlex Sanford
2017-03-28Use `:empty_project` where possible in service specsRobert Speicher
2017-02-28add /award slash commandmhasbini
add /award slash command; Allow posting of just an emoji in comment
2017-02-03Adds /target_branch slash command functionality for merge requestsYarNayar
Allows to use slash command /target_branch <target_branch_name> in merge requests notes and description. Command allows to specify target branch for current merge request. Proposed in #23619
2017-01-18Merge branch 'time-tracking-api' into 'master' Sean McGivern
Time tracking API Closes #25861 See merge request !8483
2017-01-18Add some API endpoints for time tracking.Ruben Davila
New endpoints are: POST :project_id/(issues|merge_requests)/(:issue_id|:merge_request_id)/time_estimate" POST :project_id/(issues|merge_requests)/(:issue_id|:merge_request_id)/reset_time_estimate" POST :project_id/(issues|merge_requests)/(:issue_id|:merge_request_id)/add_spent_time" POST :project_id/(issues|merge_requests)/(:issue_id|:merge_request_id)/reset_spent_time" GET :project_id/(issues|merge_requests)/(:issue_id|:merge_request_id)/time_stats"
2017-01-18Merge branch 'backport-time-tracking-ce' into 'master' Douwe Maan
Backport timetracking to CE See merge request !8195
2017-01-15Backport backend work for time tracking.Ruben Davila
2017-01-13Address MR commentsJarka Kadlecova
2017-01-11support `/merge` slash comand for MRsJarka Kadlecova
2016-11-17Remove default value for `project` argument on subscribable concernDouglas Barbosa Alexandre
2016-10-11allow multiple labels commandsbarthc
2016-10-03Add a /wip slash commandThomas Balthazar
It toggles the 'WIP' prefix in the MR title.
2016-09-28Fix permission for setting an issue's due dateRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-08-18Remove unneeded aliasesDouwe Maan
2016-08-17Fixed specs and fixes based on failing specsDouwe Maan
2016-08-13Make slash commands contextualRémy Coutable
- Return only slash commands that make sense for the current noteable - Allow slash commands decription to be dynamic Other improvements: - Add permission checks in slash commands definition - Use IssuesFinder and MergeRequestsFinder - Use next if instead of a unless block, and use splat operator instead of flatten Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-08-13Don't extract slash commands inside blockcode, blockquote or HTML tagsRémy Coutable
Improve slash command descriptions, support /due tomorrow Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-08-13Add the /title slash commandRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-08-13New Notes::SlashCommandsService serviceRémy Coutable
Check for update_issuable permission in Notes::SlashCommandsService Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-08-13Support slash commands in noteable description and notesRémy Coutable
Some important things to note: - commands are removed from noteable.description / note.note - commands are translated to params so that they are treated as normal params in noteable Creation services - the logic is not in the models but in the Creation services, which is the right place for advanced logic that has nothing to do with what models should be responsible of! - UI/JS needs to be updated to handle notes which consist of commands only - the `/merge` command is not handled yet Other improvements: - Don't process commands in commit notes and display a flash is note is only commands - Add autocomplete for slash commands - Add description and params to slash command DSL methods - Ensure replying by email with a commands-only note works - Use :subscription_event instead of calling noteable.subscribe - Support :todo_event in IssuableBaseService Signed-off-by: Rémy Coutable <remy@rymai.me>