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
2017-04-18Refactor group search out of global searchNick Thomas
2017-04-06ProjectsFinder should handle more optionsJacopo
Extended ProjectFinder in order to handle the following options: - current_user - which user use - project_ids_relation: int[] - project ids to use - params: - trending: boolean - non_public: boolean - starred: boolean - sort: string - visibility_level: int - tags: string[] - personal: boolean - search: string - non_archived: boolean GroupProjectsFinder now inherits from ProjectsFinder. Changed the code in order to use the new available options.
2017-04-04Backport differences in global search from EE to CENick Thomas
2017-03-31Refactor SearchController#showDongqing Hu
2017-01-30Improve search within group logicDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2017-01-30Include nested groups items into search resultsDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2016-03-18Restrict access to confidential issues on search resultsDouglas Barbosa Alexandre
2016-03-11Refactor Gitlab::ProjectSearchResultsYorick Peterse
Previously this class would be given a project ID which was then used to retrieve the corresponding Project object. However, in all cases the Project object was already known as it was used to grab the ID to pass to ProjectSearchResults. By just passing a Project instead we remove the need for an extra query as well as the need for some other complexity in this class.
2016-03-11Refactor Gitlab::SnippetSearchResultsYorick Peterse
This removes the need for plucking snippet IDs into memory.
2016-03-11Refactor Gitlab::SearchResultsYorick Peterse
Instead of plucking IDs this class now uses ActiveRecord::Relation objects. Plucking IDs is problematic as searching for projects can lead to a huge amount of IDs being loaded into memory only to be used as an argument for another query (instead of just using a sub-query).
2015-06-09An `in_namespace` scope is already presentzenati
2014-08-29Adding in snippet search functionalityCharles Bushong
http://feedback.gitlab.com/forums/176466-general/suggestions/5529795-search-though-snippets
2014-08-27Implement search page with filtering of results and paginationDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-08-11fix searching on empty project, prevent 500Robert Schilling
Fix hound
2014-06-24Merge pull request #5531 from NotSqrt/add-searchDmitriy Zaporozhets
Add ability to search in issue description and issue comments
2014-06-05Refactor some search scopes to prevent wierd behaviour and PG::Error issuesDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-05-15Update ability to search in issue descriptions and commentsNotSqrt
2014-03-14Remove confusing codeDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-03-14Fix global searchDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-02-20Allow access to groups with public projects.Jason Hollingsworth
Fixed Group avatars to only display when user has read permissions to at least one project in the group.
2014-01-19Remove deprecated findersskv
2014-01-16Move all Context classes into ServicesDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>