Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Change all `:empty_project` to `:project`rs-empty_project-default | Robert Speicher | 2017-08-02 | 5 | -6/+6 |
| | |||||
* | Use described_class when possible | Rémy Coutable | 2017-07-27 | 1 | -1/+1 |
| | | | | Signed-off-by: Rémy Coutable <remy@rymai.me> | ||||
* | Remove superfluous lib: true, type: redis, service: true, models: true, ↵ | Rémy Coutable | 2017-07-27 | 6 | -6/+6 |
| | | | | | | services: true, no_db: true, api: true Signed-off-by: Rémy Coutable <remy@rymai.me> | ||||
* | Rename "Slash commands" to "Quick actions" | Eric Eastwood | 2017-06-15 | 1 | -6/+6 |
| | | | | | | | | | | | | | 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` | ||||
* | Correct RSpec/SingleLineHook cop offenses | Robert Speicher | 2017-06-14 | 1 | -1/+3 |
| | |||||
* | Update diff discussion position per discussion instead of per notedm-update-discussion-diff-position | Douwe Maan | 2017-05-31 | 1 | -193/+0 |
| | |||||
* | Add system note with link to diff comparison when MR discussion becomes outdated | Douwe Maan | 2017-05-23 | 1 | -1/+19 |
| | |||||
* | Merge branch 'mia_backort' into 'master' | Jacob Schatz | 2017-05-05 | 1 | -2/+29 |
|\ | | | | | | | | | Backport of Multiple Assignees feature See merge request !11089 | ||||
| * | Address static analyzer warningmia_backort | Valery Sizov | 2017-05-05 | 1 | -1/+1 |
| | | |||||
| * | Multiple issue assignee: CE restriction for multiple assignees | Valery Sizov | 2017-05-05 | 1 | -0/+27 |
| | | |||||
| * | Backport of multiple_assignees_feature [ci skip] | Valery Sizov | 2017-05-04 | 1 | -2/+2 |
| | | |||||
* | | Support comments for personal snippets | Jarka Kadlecova | 2017-05-05 | 1 | -1/+73 |
|/ | |||||
* | Don't use original_discussion_id | Douwe Maan | 2017-04-05 | 1 | -1/+1 |
| | |||||
* | Add specs | Douwe Maan | 2017-04-05 | 2 | -5/+37 |
| | |||||
* | Add option to start a new discussion on an MR | Douwe Maan | 2017-04-05 | 2 | -0/+8 |
| | |||||
* | Create todos only for new mentions | Jarka Kadlecova | 2017-03-29 | 1 | -3/+13 |
| | |||||
* | Use `:empty_project` where possible in service specs | Robert Speicher | 2017-03-27 | 1 | -1/+1 |
| | |||||
* | add /award slash command | mhasbini | 2017-02-28 | 1 | -39/+11 |
| | | | | add /award slash command; Allow posting of just an emoji in comment | ||||
* | Fix inconsistent naming for services that delete things | dixpac | 2017-02-08 | 1 | -1/+1 |
| | | | | | | * Changed name of delete_user_service and worker to destroy * Move and change delete_group_service to Groups::DestroyService * Rename Notes::DeleteService to Notes::DestroyService | ||||
* | address comments | Jarka Kadlecova | 2017-01-25 | 1 | -9/+9 |
| | |||||
* | Support notes without project | Jarka Kadlecova | 2017-01-18 | 1 | -4/+31 |
| | |||||
* | Merge branch 'backport-time-tracking-ce' into 'master' | Douwe Maan | 2017-01-18 | 1 | -0/+12 |
|\ | | | | | | | | | Backport timetracking to CE See merge request !8195 | ||||
| * | Backport backend work for time tracking. | Ruben Davila | 2017-01-15 | 1 | -0/+12 |
| | | |||||
* | | support `/merge` slash comand for MRs | Jarka Kadlecova | 2017-01-11 | 1 | -0/+11 |
|/ | |||||
* | Check if user can read issue before being assignedissue_22664 | Felipe Artur | 2016-12-27 | 1 | -0/+2 |
| | |||||
* | Does not raise error when Note not found when processing NewNoteWorker | Oswaldo Ferreira | 2016-11-11 | 1 | -4/+33 |
| | | | | - Also remove unnecessary param | ||||
* | Ensure we have a user before checking for their permission in ↵ | Rémy Coutable | 2016-09-20 | 1 | -0/+69 |
| | | | | | | Notes::SlashCommandsService Signed-off-by: Rémy Coutable <remy@rymai.me> | ||||
* | Remove unneeded aliases | Douwe Maan | 2016-08-18 | 1 | -4/+4 |
| | |||||
* | Fixed specs and fixes based on failing specs | Douwe Maan | 2016-08-16 | 2 | -12/+23 |
| | |||||
* | New Notes::SlashCommandsService service | Rémy Coutable | 2016-08-13 | 2 | -9/+143 |
| | | | | | | Check for update_issuable permission in Notes::SlashCommandsService Signed-off-by: Rémy Coutable <remy@rymai.me> | ||||
* | Support slash commands in noteable description and notes | Rémy Coutable | 2016-08-13 | 1 | -7/+16 |
| | | | | | | | | | | | | | | | | | | | | | | | | | 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> | ||||
* | Avoid `describe`-ing symbols in specsrs-describe-symbols | Robert Speicher | 2016-07-12 | 2 | -2/+2 |
| | |||||
* | Add comment with diff to DiffPositionUpdateService specnew-diff-notes | Douwe Maan | 2016-07-07 | 1 | -0/+104 |
| | |||||
* | Add tests for DiffPositionUpdateService | Douwe Maan | 2016-07-06 | 1 | -0/+71 |
| | |||||
* | Fix latests concerns | ZJ van de Weg | 2016-05-18 | 1 | -1/+1 |
| | |||||
* | Fix tests and wrong choices during merge | Zeger-Jan van de Weg | 2016-05-12 | 1 | -0/+12 |
| | |||||
* | Add tests on Awardables and Award Emoji | Zeger-Jan van de Weg | 2016-05-10 | 1 | -12/+8 |
| | |||||
* | Adapt tests to new testing guidelines | Robert Schilling | 2016-04-12 | 1 | -5/+4 |
| | |||||
* | Fix code review issues | Robert Schilling | 2016-04-12 | 1 | -4/+5 |
| | |||||
* | Delete notes via API | Robert Schilling | 2016-04-12 | 1 | -0/+15 |
| | |||||
* | Rename Tasks to Todos | Douglas Barbosa Alexandre | 2016-02-20 | 1 | -6/+6 |
| | |||||
* | Create or mark task pending as soon the action happens | Douglas Barbosa Alexandre | 2016-02-20 | 1 | -1/+1 |
| | |||||
* | Create a pending task when a user is mentioned when edit a issue/mr/note | Douglas Barbosa Alexandre | 2016-02-20 | 1 | -3/+3 |
| | |||||
* | Mark pending tasks for the current user as done when he edit a note | Douglas Barbosa Alexandre | 2016-02-20 | 1 | -0/+45 |
| | |||||
* | Mark pending tasks for the note author as done when he left a note | Douglas Barbosa Alexandre | 2016-02-20 | 1 | -0/+1 |
| | |||||
* | Fix Rubocop errornote-background-job | Josh Frye | 2016-01-28 | 1 | -3/+3 |
| | |||||
* | Update tests | Josh Frye | 2016-01-28 | 2 | -3/+27 |
| | |||||
* | Tag service specs | Douwe Maan | 2015-12-09 | 1 | -1/+1 |
| | |||||
* | fox testsemoji_votes | Valery Sizov | 2015-11-19 | 1 | -25/+25 |
| | |||||
* | added specs | Valery Sizov | 2015-11-19 | 1 | -0/+34 |
| |