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-06-16Merge branch 'issuable-sidebar-bold' into 'master' Jacob Schatz
Fixed issue with bold in issuable sidebar ## What does this MR do? ~~The sidebar contained both normal font weight & bold font weight, so this standardises them to bold.~~ After looking at the designs, i've updated the font weights & colors throughout the sidebar to correctly match them ## Screenshots (if relevant) ![Screen_Shot_2016-06-02_at_11.03.40](/uploads/0a3eb6a67ce5722c77f6adf2fe883017/Screen_Shot_2016-06-02_at_11.03.40.png) See merge request !4398
2016-06-15Fixed issue with de-selecting dropdown option in issue sidebarPhil Hughes
Closes #18641
2016-06-10Revert change to search all usersPhil Hughes
2016-06-05Fixed JS errorsPhil Hughes
CHANGELOG item
2016-05-26Fixed user select failing tests on merge requestPhil Hughes
2016-05-26Filter issuables by any userPhil Hughes
Closes #2836
2016-04-20Merge branch 'multi-filter-labels' into 'master' Jacob Schatz
Mutliple label filter Fixes #989 See merge request !3438
2016-04-20Label text color comes from JSONPhil Hughes
Created issuable singleton to house the filtering
2016-04-05Add author id to the right selectorZeger-Jan van de Weg
2016-04-05Merge branch 'master' into assign-to-issuable-openerZeger-Jan van de Weg
2016-03-30Sidebar collapse update issueJacob Schatz
2016-03-30User selection from collapsed sidebarJacob Schatz
2016-03-30Make changed values visible in minimized sidebar.Jacob Schatz
2016-03-29Merge branch 'master' into assign-to-issuable-openerZeger-Jan van de Weg
2016-03-29Dropdown bug fixesPhil Hughes
Added back upcoming to milestone filter Fixed bug that would cause the currently selected value to disappear on filters Fixed bug that throw an error when filtering by upcoming when there is only a milestone in the past
2016-03-26Update, so filtering works properly.Jacob Schatz
Bulk update works as well
2016-03-25Edit button leaves modal openJacob Schatz
Add user avatar to user selection
2016-03-25Fix features until tests pass.Jacob Schatz
Milestones needed a none selector Assignee needed unassign.
2016-03-25Fixed JS error that was failing the buildsPhil Hughes
2016-03-25Add Assign to me button and unassigned.Jacob Schatz
2016-03-25Assign current user when no user is assigned linkJacob Schatz
2016-03-25Fix broken functionality in sidebar after merge.Jacob Schatz
Added nice animations too.
2016-03-25Fix endpointAlfredo Sumaran
2016-03-25Add multi select stay open functionalityJacob Schatz
2016-03-25New dropdowns work on merge requests too!Jacob Schatz
2016-03-25Adds new dropdown ajax to user selectionJacob Schatz
2016-03-25Adding dropdown for usersJacob Schatz
2016-03-23Removed bold on any/unassigned authorsPhil Hughes
2016-03-18Fixes issue with filter label missing on labels & milestonesPhil Hughes
2016-03-18Another CS style fixPhil Hughes
2016-03-18Fixed some CS styling issuesPhil Hughes
Fixed bug where wouldn't work on MR index
2016-03-18Fixed issue with dashboard issues not reloadingPhil Hughes
2016-03-18Changing filter dropdowns shows loadingPhil Hughes
Instead of doing a full refresh of the page - i've modified the filterResults method on the Issues object to work for this form as well
2016-03-10Fixed issue with user list not fetching current project usersPhil Hughes
2016-03-10Status dropdownPhil Hughes
2016-03-10Started page two for labels dropdown to allow creating new labelsPhil Hughes
2016-03-10Correctly fitlers remotelyPhil Hughes
2016-03-10Applied new dropdowns to issue filtersPhil Hughes
2016-02-22Issuable can be assigned to authorZeger-Jan van de Weg
Closes #9014 The only difference with #9014 is that I thoughed the author should also be able to assign the issue. If this is unwanted behavior Ill revert it.
2015-12-26Fix user autocomplete uriIgor Matsko
2015-12-02Remove "none" username for "Unassigned" and "Any User" select optionsDouwe Maan
2015-11-21Fix Assignee selector when 'Unassigned' #2831Jose Corcuera
2015-08-21Fix bug preventing invite by e-mailStan Hu
This was broken in 70f5291808 as a result of introducing the ability to filter by current user. Closes #2320
2015-04-14Let members be invited from Add members pane.Douwe Maan
2015-04-09Move current user to the top of the list in author/assignee filtersStan Hu
Closes #1321
2015-03-27Refactor UsersSelect to use internal gitlab autocomplete controllerDmitriy Zaporozhets
2014-10-27Run user select Js only where neededCiro Santilli
Transform current implementation into regular Coffescript classes so that the same call method can be reused on the dispatcher as for other classes.
2014-06-13Dont expose user email via APIDmitriy Zaporozhets
To prevent leaking of users info we reduce amount of user information retrieved via API for normal users. What user can get via API: * if not admin: only id, state, name, username and avatar_url * if admin: all user information * about himself: all informaion Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-06-11fixes gitlab.com issue #229Marvin Frick
Changes .js.coffe files to not use a hardcoded path to `no_avatar.png` but instead stick with the asset pipeline. renames coffee.erb back to coffee
2014-05-20Fix avatar URLs in JS-lists for relative_url_rootOlaf Mandel
In user lists created when entering a (partial) user name into a field, the URL to the user avatar was invalid if running with relative_url_root. This patch is the result of: sed -i 's/\(= *\)\(user\.avatar_url\)/\1gon.relative_url_root + \2/' \ app/assets/javascripts/*.coffee