summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Use VisibilityLevel constants in spec23104-remove-public-param-for-projectsToon Claes2017-02-071-4/+4
|
* API: remove `public` param for projectsToon Claes2017-02-074-67/+14
| | | | | | | | | The create and edit actions for projects had these parameters: - `public` (optional) - if true same as setting `visibility_level = 20` - `visibility_level` (optional) Remove the `public` parameter to avoid contradiction.
* Merge branch 'pms-lowercase-system-notes' into 'master'Sean McGivern2017-02-063-14/+22
|\ | | | | | | | | Make all system notes lowercase See merge request !8807
| * Add changelog filepms-lowercase-system-notesOswaldo Ferreira2017-02-061-0/+4
| |
| * Update system_note_service_spec.rbPedro Moreira da Silva2017-02-061-5/+5
| |
| * Remove noteable object in time tracking system notes [ci-skip]Pedro Moreira da Silva2017-02-061-8/+8
| |
| * Make all system notes lowercasePedro Moreira da Silva2017-02-061-8/+12
| |
* | Merge branch 'redesign-searchbar-admin-project-26794' into 'master'Jacob Schatz2017-02-063-9/+10
|\ \ | | | | | | | | | | | | | | | | | | Modify the search bar area on admin/projects page Closes #26794 See merge request !8776
| * | fixes mobile viewredesign-searchbar-admin-project-26794Nur Rony2017-01-311-1/+1
| | |
| * | adds changelogNur Rony2017-01-311-0/+4
| | |
| * | hides search buttonNur Rony2017-01-311-0/+1
| | |
| * | layout rearrangedNur Rony2017-01-301-8/+4
| | |
* | | Merge branch '27602-fix-avatar-border-flicker-mention-dropdown' into 'master'Jacob Schatz2017-02-063-0/+26
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Resolves user avatar flickers as you type Closes #27602 See merge request !8950
| * | | adds changelog27602-fix-avatar-border-flicker-mention-dropdownNur Rony2017-02-031-0/+4
| | | |
| * | | fixes flickers in avatar mention dropdownNur Rony2017-02-032-0/+22
| | | |
* | | | Merge branch 'babel-all-the-things' into 'master' Fatih Acet2017-02-063-4/+11
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | Use babel to transpile all non-vendor javascript assets regardless of file extension See merge request !8988
| * | | | add CHANGELOG entry for !8988babel-all-the-thingsMike Greiling2017-02-061-0/+5
| | | | |
| * | | | transpile all javascript files with babelMike Greiling2017-02-061-2/+2
| | | | |
| * | | | add npm run webpack commandMike Greiling2017-02-061-2/+4
| | | | |
* | | | | Merge branch 'fix-ace-editor-modules' into 'master' Fatih Acet2017-02-061-8/+17
|\ \ \ \ \ | |_|_|_|/ |/| | | | | | | | | | | | | | fix ace editor modules to include asset digest in production See merge request !8869
| * | | | lazy-load ace config so that we can ensure window.gon existsfix-ace-editor-modulesMike Greiling2017-02-051-10/+17
| | | | |
| * | | | fix ace editor modules to include asset digest in productionMike Greiling2017-02-051-2/+4
| |/ / /
* | | | Merge branch 'terminal-max-session-time' into 'master' Kamil Trzciński2017-02-0616-13/+107
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Introduce maximum session time for terminal websocket connection Closes #26263 See merge request !8413
| * | | | Introduce maximum session time for terminal websocket connectionterminal-max-session-timeAdam Niedzielski2017-02-0616-13/+107
| |/ / / | | | | | | | | | | | | | | | | Store the value in application settings. Expose the value to Workhorse.
* | | | Merge branch '22007-unify-projects-search' into 'master' Rémy Coutable2017-02-069-65/+1910
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Unify projects search by removing /projects/:search endpoint Closes #22007 See merge request !8877
| * | | | Adjust V3 projects typo on spec22007-unify-projects-searchOswaldo Ferreira2017-02-031-1/+1
| | | | |
| * | | | Update V3 to V4 docsOswaldo Ferreira2017-02-022-0/+11
| | | | |
| * | | | Remain V3 endpoint unchangedOswaldo Ferreira2017-01-304-3/+1895
| | | | |
| * | | | Unify projects search by removing /projects/:search endpointOswaldo Ferreira2017-01-303-62/+4
| | | | |
* | | | | Merge branch 'api-fix-files' into 'master' Rémy Coutable2017-02-064-1/+11
|\ \ \ \ \ | |_|/ / / |/| | | | | | | | | | | | | | API: Fix file downloading See merge request !8953
| * | | | Ensure the right content is served for the build artifacts APIapi-fix-filesRobert Schilling2017-02-052-0/+6
| | | | |
| * | | | API: Fix file downloadingRobert Schilling2017-02-032-1/+5
| | | | |
* | | | | Merge branch 'sh-add-index-for-label-count' into 'master' Yorick Peterse2017-02-052-1/+13
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add index to labels for `type` and project_id` Closes #27676 See merge request !8978
| * | | | | Add index to labels for `type` and project_id`sh-add-index-for-label-countStan Hu2017-02-042-1/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When loading pages that display the number of open issues, the backend runs a query such as: ```sql SELECT "labels"."id" FROM "labels" WHERE "labels"."type" IN ('ProjectLabel') AND "labels"."project_id" = 1000 ``` This results in an entire scan of the `labels` table. To optimize performance, add the appropriate index to the table. Closes #27676
* | | | | | Merge branch 'slash-commands-typo' into 'master' Grzegorz Bizon2017-02-052-1/+5
|\ \ \ \ \ \ | |/ / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed typo in slash commands docs Closes #27674 See merge request !8976
| * | | | | Fixed typoJason Aquino2017-02-042-1/+5
| | | | | | | | | | | | | | | | | | | | | | | | Fixes gitlab-org/gitlab-ce#27674
* | | | | | Merge branch 'fix-rack-proxy' into 'master' Douwe Maan2017-02-041-2/+2
|\ \ \ \ \ \ | |/ / / / / |/| | | | | | | | | | | | | | | | | Fix "NameError: uninitialized constant Rack::Proxy" in production environment See merge request !8977
| * | | | | fix rack-proxy dependency in productionfix-rack-proxyMike Greiling2017-02-041-2/+2
| | | | | |
* | | | | | Merge branch 'ux-guide-button-placement' into 'master' Achilleas Pipinellis2017-02-041-0/+14
|\ \ \ \ \ \ | |/ / / / / |/| | | | | | | | | | | | | | | | | UX Guide: Button placement in groups See merge request !8972
| * | | | | [ci skip] UX Guide: Button placement in groupsux-guide-button-placementAllison Whilden2017-02-031-0/+14
| | | | | |
* | | | | | Merge branch 'go-go-gadget-webpack' into 'master' Jacob Schatz2017-02-04204-985/+2780
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Integrate webpack for frontend asset compilation Closes #14634 See merge request !7288
| * | | | | | fix failing testgo-go-gadget-webpackMike Greiling2017-02-031-1/+1
| | | | | | |
| * | | | | | fix Vue warnings for missing elementMike Greiling2017-02-031-2/+2
| | | | | | |
| * | | | | | Merge branch 'master' into go-go-gadget-webpackMike Greiling2017-02-03100-1992/+2066
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * master: Change window size before visiting page, to get correct scroll position Fix slash commands spec error Move project services to new location under Integrations Move webhooks to new a location under Integrations Fixed eslint test failure Fixed redirection from http://someproject.git to http://someproject Add traits for the different Event types to the Event factory prevent nonewline type diff lines from containing unfolding link ensure linenumber data attribute is correct for the last line in a diff chunk ensure last line in diff block is contained within a table row element ensure click event is bound only once
| * \ \ \ \ \ \ Merge branch 'master' into go-go-gadget-webpackMike Greiling2017-02-03287-2144/+3741
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * master: (181 commits) Fixed adding to list bug Remove unnecessary queries for .atom and .json in Dashboard::ProjectsController#index Fixed modal lists dropdown not updating when list is deleted Fixed remove btn error after creating new issue in list Removed duplicated test Removed Masonry, instead uses groups of data Uses mixins for repeated functions Fixed up specs Props use objects with required & type values Removes labels instead of closing issue when clicking remove button Fixed JS lint errors Fixed issue card spec Added webkit CSS properties Fixed bug with empty state showing after search Fixed users href path being incorrect Fixed bug where 2 un-selected issues would stay on selected tab Fixed DB schema Changed how components are added in objects Added remove button Add optional id property to the issue schema Fixed issue link href Disabled add issues button if no lists exist ...
| * | | | | | | | consistently use single quotesMike Greiling2017-02-021-3/+3
| | | | | | | | |
| * | | | | | | | allow application.js to require other scripts which start with application*Mike Greiling2017-02-021-1/+1
| | | | | | | | |
| * | | | | | | | DRY with Gitlab.config.webpack.dev_server referenceswebpackMike Greiling2017-02-021-10/+12
| | | | | | | | |
| * | | | | | | | Merge branch 'master' into webpackMike Greiling2017-02-02154-612/+1805
| |\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * master: (63 commits) Use `add_$role` helper in snippets specs removes old css class from everywhere Fixes broken build: Use jquery to get the element position in the page Check public snippets for spam Keep snippet visibility on error Update pipeline and commit URL and text on CI status change Support non-ASCII characters in GFM autocomplete Active tense test coverage Fix filtered search manager spec teaspoon error Reduce the number of loops that Cycle Analytics specs use Remove unnecessary returns / unset variables from the CoffeeScript -> JS conversion. update spec Change the reply shortcut to focus the field even without a selection. use destroy_all Remove settings cog from within admin scroll tabs; keep links centered add changelog remove old project members from project add spec replicating validation error Improve styling of the new issue message Don't capitalize environment name in show page ...
| * | | | | | | | | disable webpack proxy in rspec environment due to conflicts with webmock gemMike Greiling2017-02-021-12/+20
| | | | | | | | | |