summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Fix UserBasicintroduce-pipeline-triggersKamil Trzcinski2017-03-061-1/+1
|
* Rename `/take` to `/take_ownership`, expose `owner` in `v3`.Kamil Trzcinski2017-03-064-7/+8
|
* Update after reviewKamil Trzcinski2017-03-063-1/+5
|
* Lint docKamil Trzcinski2017-03-051-2/+2
|
* Move foreign key to separate migrationKamil Trzcinski2017-03-053-3/+13
|
* Fix import model attributesKamil Trzcinski2017-03-052-0/+3
|
* Update documentation and expose IDKamil Trzcinski2017-03-054-109/+172
|
* Introduce tests for pipeline triggersKamil Trzcinski2017-03-056-52/+145
|
* Fix trigger modelKamil Trzcinski2017-03-051-1/+0
|
* Update db/schemaKamil Trzcinski2017-03-053-3/+6
|
* Make triggers to be user awareKamil Trzcinski2017-03-056-7/+31
|
* Make Pipeline Triggers to be user awareKamil Trzcinski2017-03-053-3/+28
| | | | | | | - they can have owner, - they can be edited, - they have description, - you can take ownership of them
* Update triggers APIKamil Trzcinski2017-03-055-17/+311
|
* Merge branch 'pages-for-ee' into 'master' Kamil Trzciński2017-03-051-0/+1
|\ | | | | | | | | Re-enable GitLab pages job for GitLab EE See merge request !9703
| * Re-enable GitLab pages job for GitLab EEpages-for-ee💃 Winnie 💃2017-03-041-0/+1
| |
* | Merge branch 'format-timeago-date' into 'master' Jacob Schatz2017-03-054-5/+9
|\ \ | | | | | | | | | | | | | | | | | | Formats timeago dates to be more friendly Closes #27537 See merge request !9145
| * | Fixed timeago specsformat-timeago-datePhil Hughes2017-02-132-4/+4
| | |
| * | Formats timeago dates to be more friendlyPhil Hughes2017-02-102-1/+5
| | | | | | | | | | | | | | | | | | | | | | | | Formats the timeago timestamps to be a short date. This will only be visible on slower connections whilst the JS is loading, after the JS has loaded it will be turned into a timeago string Closes #27537
* | | Merge branch 'commons-chunk-plugin' into 'master' Jacob Schatz2017-03-0533-71/+135
|\ \ \ | |_|/ |/| | | | | | | | | | | | | | Use CommonsChunkPlugin to place vendor libraries in cacheable bundles Closes #25550 See merge request !9647
| * | merge cropper library into profile_bundlecommons-chunk-pluginMike Greiling2017-03-034-9/+2
| | |
| * | remove isolated common_vue inclusionMike Greiling2017-03-031-2/+0
| | |
| * | rename application entry point and change manifest to runtimeMike Greiling2017-03-033-5/+5
| | |
| * | remove problematic plugins from karma's webpack configMike Greiling2017-03-031-1/+12
| | |
| * | add CHANGELOG.md entry for !9647Mike Greiling2017-03-031-0/+5
| | |
| * | create a cacheable commons bundle for d3 libraryMike Greiling2017-03-037-6/+13
| | |
| * | merge lib_chart into graphs bundleMike Greiling2017-03-036-7/+2
| | |
| * | include vue_shared scripts within common_vue chunkMike Greiling2017-03-031-1/+3
| | |
| * | create a cacheable commons bundle for our Vue bundlesMike Greiling2017-03-0312-5/+28
| | |
| * | don't rely on global spaced Vue library for issuable bundleMike Greiling2017-03-031-0/+2
| | |
| * | separate webpack runtime into its own chunk to maintain cacheability of ↵Mike Greiling2017-03-032-3/+3
| | | | | | | | | | | | common chunk
| * | refactor common bundle to ES module syntax and move global exports to ↵Mike Greiling2017-03-035-32/+49
| | | | | | | | | | | | application.js
| * | create a common.js bundle and include all jQuery pluginsMike Greiling2017-03-037-30/+34
| | |
| * | update plugin formattingMike Greiling2017-03-031-0/+3
| | |
| * | use deterministic module IDs in production and developmentMike Greiling2017-03-031-0/+4
| | |
* | | Merge branch 'dashboard-filter-search-keep-params' into 'master' Dmitriy Zaporozhets2017-03-0427-205/+244
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Fixes filtering by name reseting archive filter Closes #28007 See merge request !9625
| * | | Improve explore projects spinach testDmitriy Zaporozhets2017-03-041-2/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Project name "Internal" is too generic and can lead to false positive/negative when there is a visibility filter on the page. So we ensure we check for project inside list holder css class. Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
| * | | Improve projects/groups list js codedashboard-filter-search-keep-paramsDmitriy Zaporozhets2017-03-043-10/+14
| | | | | | | | | | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
| * | | Removed empty options from URLPhil Hughes2017-03-031-1/+1
| | | |
| * | | Refactor projects filtering by nameDmitriy Zaporozhets2017-03-0323-207/+212
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Reuse same search form and behavior for dashboard#projects, group#projects and admin#projects. Repsect all other options like sorting, personal filter when search projects by name. Create FilterableList JS class to handle identical behaviour of projects and groups lists. This change also makes filtering and sorting availabe on explore#projects and explore#groups no matter if you are logged in or not. Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
| * | | Fixed filter_projects param still used in group controllerPhil Hughes2017-03-031-1/+1
| | | |
| * | | Fixed incorrect empty state showingPhil Hughes2017-03-031-2/+2
| | | |
| * | | Fixes filtering by name reseting archive filterPhil Hughes2017-03-038-22/+48
| | | | | | | | | | | | | | | | | | | | | | | | Previously the search form just wasn't including any params that had previously been set, so when you filtered by name, it would reset all the params & therefore ignoring the archived param Closes #28007
* | | | Merge branch 'dz-change-project-view' into 'master' Dmitriy Zaporozhets2017-03-043-2/+7
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | Change default project view for user from readme to files view See merge request !9584
| * | | | Change default project view for user from readme to files viewdz-change-project-viewDmitriy Zaporozhets2017-03-033-2/+7
| |/ / / | | | | | | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* | | | Merge branch 'list_issues_with_no_labels' into 'master' Hannes Rosenögger2017-03-042-0/+10
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Be able to list issues with no labels using API Closes #28520 See merge request !9697
| * | | | Adds changelog entryVignesh Ravichandran2017-03-041-0/+4
| | | | |
| * | | | Be able to list issues with no labels using APIVignesh Ravichandran2017-03-031-0/+6
|/ / / /
* | | | Merge branch 'sh-improve-sidekiq-status' into 'master' Robert Speicher2017-03-042-6/+55
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | Make SidekiqStatus able to count number of jobs completed/running See merge request !9694
| * | | | Make SidekiqStatus able to count number of jobs completed/runningsh-improve-sidekiq-statusStan Hu2017-03-032-6/+55
| | |/ / | |/| |
* | | | Merge branch 'bump-health-check-gem' into 'master' Robert Speicher2017-03-044-6/+6
|\ \ \ \ | |/ / / |/| | | | | | | | | | | Bump health_check gem to version 2.6.0 See merge request !9691