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
2016-08-30if issue is not valid we revert back to the old labels when updatingtiagonbotelho
2016-08-30refactors update issue api request and some minor commentstiagonbotelho
2016-08-19Merge branch '4273-slash-commands' into 'master'Robert Speicher
Support slash commands in issues / MR description & comments See merge request !5021
2016-08-18Fix behavior of label_ids and add/remove_label_idsDouwe Maan
2016-08-18Address feedbackDouwe Maan
2016-08-18Fix specs and implement fixes based on failing specsDouwe Maan
2016-08-13Refactor slash command definitionDouwe Maan
2016-08-13Simplify the slash commands DSL to store action blocks instead of creating ↵Rémy Coutable
methods Other improvements: - Ensure slash commands autocomplete doesn't break when noteable_type is not given - Slash commands: improve autocomplete behavior and /due command - We don't display slash commands for note edit forms. - Add tests for reply by email with slash commands - Be sure to execute slash commands after the note creation in Notes::CreateService 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>
2016-08-13Send notification emails when users are newly mentioned in issue editsNick Thomas
2016-07-15Allow bulk (un)subscription from issues in issue indexCairo Noleto
fixies #19747
2016-06-04Spec label add / delete in UpdateServiceSean McGivern
2016-06-04Fix statementAlfredo Sumaran
2016-06-04WIP: allow adding and removing labels in bulkSean McGivern
2016-04-22Use association search in issuable create serviceGrzegorz Bizon
2016-04-22Verify label affiliation before assigning to issueGrzegorz Bizon
This also verify if milestone belongs to correct project before creating a new issue. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/15439
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.
2016-02-20Rename IssuableBaseService#have_changes? to has_changes?Douglas Barbosa Alexandre
2016-02-20Move common behavior to to IssuableBaseServiceDouglas Barbosa Alexandre
2016-02-20Marks pending tasks for an user as done when he edit an issueDouglas Barbosa Alexandre
2015-11-20Refactor creation of system notes for Issue/MR labels. #2296Rubén Dávila
2015-11-20Generate system note after Task item has been updated on Issue or Merge ↵Ruben Davila
Request. #2296 Everytime the User check or uncheck a Task Item from the Issue or Merge Request description, a new update is going to be added to the activity logs of the Issue or Merge Request. Note that when using the edit form, you can only update the Task item status or add/delete/modify existing ones. Doing both actions is not fully supported.
2015-11-17Refactor similar code for Issue and MR update serviceDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-07-24Dynamically check `:admin_*` ability in IssuableBaseServiceRobert Speicher
Closes #2092
2015-06-26Simplify set of assignee, milestone and label to admin_issue ruleDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-06-25Dont allow set assignee, milestone or labels if user is guestDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-05-29Support editing target branch of merge requestStan Hu
Closes https://github.com/gitlabhq/gitlabhq/issues/7105 See: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/130
2015-05-27Add a note when an Issue or Merge Request's title changesRobert Speicher
2015-05-11Update SystemNoteService method naming conventionsRobert Speicher
Now the verb comes first, and there is no restriction on singular/plural.
2015-05-11Add a SystemNoteService classRobert Speicher
There's a lot of code in the Note model that only deals with creating system notes, so we're going to split that into its own class.
2015-02-08Add labels notesNikita Verkhovin
2014-10-07Factor issue and merge request servicesCiro Santilli