summaryrefslogtreecommitdiff
path: root/spec
Commit message (Collapse)AuthorAgeFilesLines
* Return 202 for destory. Remove []. Remove def pipeline_schedules from helper.Shinya Maeda2017-05-301-1/+1
|
* Improve API with optinal and default. Allow to use scope as a parameter.Shinya Maeda2017-05-301-0/+18
|
* Remove deleted_at from Entity. Use find_by. Remove returns.Shinya Maeda2017-05-301-2/+1
|
* Include owner for pipeline_schedules. Improve N+1 spec. Use PipelineBasic ↵Shinya Maeda2017-05-302-24/+6
| | | | for small payload.
* includes last_pipelineShinya Maeda2017-05-301-0/+3
|
* zj keen eye2Shinya Maeda2017-05-301-6/+1
|
* zj keen eyeShinya Maeda2017-05-301-26/+12
|
* avoids N + 1 queriesShinya Maeda2017-05-301-0/+12
|
* Concatinate dot behind endShinya Maeda2017-05-301-2/+1
|
* Add space between curly bracketsShinya Maeda2017-05-301-1/+1
|
* Use attributes_forShinya Maeda2017-05-301-24/+16
|
* Use 'set' to top-level variables. Remove repository.Shinya Maeda2017-05-301-3/+3
|
* Add validation specShinya Maeda2017-05-301-11/+21
|
* Change status number to ailiasShinya Maeda2017-05-301-2/+2
|
* Add API support for pipeline scheduleShinya Maeda2017-05-303-0/+346
|
* Merge branch 'Disable-sub_group_issuables_spec-for-mysql' into 'master'Rémy Coutable2017-05-301-1/+1
|\ | | | | | | | | | | | | Disable sub_group_issuables_spec.rb for mysql Closes #33057 See merge request !11795
| * Disable sub_group_issuables_spec.rb for mysqlLuke "Jared" Bennett2017-05-301-1/+1
| |
* | Merge branch ↵Douwe Maan2017-05-302-45/+66
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | '19107-404-when-creating-new-milestone-or-issue-for-project-that-has-issues-disabled' into 'master' 'New issue'/'New merge request' dropdowns should show only projects with issues/merge requests feature enabled Closes #19107 See merge request !11754
| * | 'New issue'/'New merge request' dropdowns should show only projects with ↵19107-404-when-creating-new-milestone-or-issue-for-project-that-has-issues-disabledblackst0ne2017-05-302-45/+66
| | | | | | | | | | | | issues/merge requests feature enabled
* | | Merge branch ↵Grzegorz Bizon2017-05-301-1/+24
|\ \ \ | |_|/ |/| | | | | | | | | | | | | | | | | | | | '33032-invalid-you-directly-addressed-yourself-todo-when-using-unsubscribe' into 'master' Resolve "Invalid 'You directly addressed yourself' TODO when using `/unsubscribe`" Closes #33032 See merge request !11788
| * | Fix /unsubscribe slash command creating extra todos33032-invalid-you-directly-addressed-yourself-todo-when-using-unsubscribeSean McGivern2017-05-301-1/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The /unsubscribe slash command means that we check if the current user is subscribed to the issuable without having an explicit subscription. That means that we use the UserParser to find references to them in the notes. The UserParser (and all parsers inheriting from BaseParser) use RequestStore to cache ActiveRecord objects, so that we don't need to load the User object each time, if we're parsing references a bunch of times in the same request. However, it was always returning _all_ of the previously cached items, not just the ones matching the IDs passed. This would mean that we did two runs through with UserParser if you were mentioned in a comment, and then mentioned someone else in your comment while using /unsubscribe: 1. Because /unsubscribe was used, we see if you were mentioned in any comments. 2. Because you mentioned someone, we find them - but we would also get back your user, even if you didn't mention yourself. This would have the effect of creating a mention or directly addressed todo for yourself incorrectly. The fix is simple: only return values from the cache matching the IDs passed.
* | | Merge branch ↵Fatih Acet2017-05-301-0/+37
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | '32916-browser-notifications-for-pipeline-running-in-a-mr-is-gone' into 'master' Resolve "Browser notifications for pipeline running in a MR is gone" Closes #32916 See merge request !11734
| * | | Added specs for handleNotifications in mr_widget_options_spec.jsLuke "Jared" Bennett2017-05-261-0/+37
| | | |
* | | | Merge branch 'issue_32225_2' into 'master'Kamil Trzciński2017-05-302-2/+44
|\ \ \ \ | |_|/ / |/| | | | | | | | | | | Set head pipeline when creating merge requests See merge request !11669
| * | | Set head pipeline when creating merge requestsissue_32225_2Felipe Artur2017-05-292-1/+32
| | | |
| * | | Sanity check pipeline sha before saving merge request head pipelineFelipe Artur2017-05-231-1/+12
| | | |
* | | | Update looks job logFilipa Lacerda2017-05-302-139/+185
| | | |
* | | | Merge branch '31349-pipeline-url-techdeb' into 'master'Phil Hughes2017-05-301-1/+1
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | Use vue file for pipelines tables components See merge request !11760
| * | | | Use vue file for pipelines tables components31349-pipeline-url-techdebFilipa Lacerda2017-05-291-1/+1
| | |_|/ | |/| |
* | | | Merge branch 'fix-authorized-members-destroy' into 'master'Rémy Coutable2017-05-301-1/+1
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | Fix spec for Members::AuthorizedDestroyService See merge request !11778
| * | | | Fix spec for Members::AuthorizedDestroyServicefix-authorized-members-destroyYorick Peterse2017-05-301-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | This spec was still assuming that creating a project would not result in the owner having access to the project.
* | | | | Merge branch '2472-assignee-dropdown-does-not-display-selected-assignee-ce' ↵Phil Hughes2017-05-302-0/+77
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | into 'master' Assignee dropdown does not display selected assignee Closes #2472 See merge request !11744
| * | | | | Fix rubocop2472-assignee-dropdown-does-not-display-selected-assignee-ceClement Ho2017-05-261-3/+1
| | | | | |
| * | | | | Backport MR from EEClement Ho2017-05-263-0/+93
| | | | | |
* | | | | | Merge branch '31849-pipeline-show-view-realtime' into 'master'Phil Hughes2017-05-301-33/+26
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Creates a mediator for pipeline details vue in order to mount several vue apps with the same data Closes #31849 See merge request !11732
| * | | | | | Creates a mediator for pipeline details vue in order to mount several vue ↵Filipa Lacerda2017-05-261-33/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | apps with the same data
* | | | | | | Merge branch '31616-add-uptime-of-gitlab-instance-in-admin-area' into 'master'Rémy Coutable2017-05-301-0/+3
|\ \ \ \ \ \ \ | |_|_|/ / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 31616-add-uptime-of-gitlab-instance-in-admin-area Closes #31616 See merge request !11590
| * | | | | | 31616-add-uptime-of-gitlab-instance-in-admin-areajboltz882017-05-291-0/+3
| | | | | | |
* | | | | | | Merge branch '32790-pipeline_schedules-pages-throwing-error-500' into 'master'Kamil Trzciński2017-05-292-0/+32
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Resolve "pipeline_schedules pages throwing error 500" Closes #32790 See merge request !11706
| * | | | | | | Add a test for deletion of importing_or_inactive?Shinya Maeda2017-05-291-0/+8
| | | | | | | |
| * | | | | | | NULL to nilShinya Maeda2017-05-291-2/+2
| | | | | | | |
| * | | | | | | Reproduced2Shinya Maeda2017-05-291-0/+24
| | | | | | | |
| * | | | | | | Revert "Reproduced"Shinya Maeda2017-05-291-24/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 3e0d8b4ca7d7bd0f1ce014b6caaff1b1e32b1f8f.
| * | | | | | | ReproducedShinya Maeda2017-05-291-0/+24
| | |_|_|/ / / | |/| | | | |
* | | | | | | Merge branch ↵Robert Speicher2017-05-292-0/+94
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | '32677-migrations-using-update_column_in_batches-must-have-a-spec' into 'master' New Migration/UpdateColumnInBatches cop Closes #32677 See merge request !11611
| * | | | | | | Disable Migration/UpdateColumnInBatches for old migrations32677-migrations-using-update_column_in_batches-must-have-a-specRémy Coutable2017-05-291-0/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
| * | | | | | | New Migration/UpdateColumnInBatches copRémy Coutable2017-05-291-0/+94
| |/ / / / / / | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* | | | | | | Merge branch '30917-wiki-is-not-searchable-with-guest-permissions' into 'master'Douwe Maan2017-05-292-2/+11
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Resolve "Wiki is not searchable with Guest permissions" Closes #30917 See merge request !11613
| * | | | | | | Explicitly test that guest is able to search through the wikiValery Sizov2017-05-292-3/+3
| | | | | | | |
| * | | | | | | Fix: Wiki is not searchable with Guest permissionsValery Sizov2017-05-221-0/+9
| | | | | | | |