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
2015-09-18Fix 500 on trending projects if isntance has 100k+ projectsDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-08-26Improve trending projects finderDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-07-07Rename NoMilestone to Milestone::NoneRobert Speicher
Also refactors IssuableFinder to avoid redundant title check.
2015-07-07Allow user to filter by Issues/Merge Requests without a MilestoneRobert Speicher
2015-06-19Revert merge request states renamingDmitriy Zaporozhets
Replaced: * "Accepted" with "Merged" * "Rejected" with "Closed" Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-05-27Set milestone on new issue when creating issue from index with milestone ↵Douwe Maan
filter active.
2015-05-25Add Accepted and Rejected tabs to MR lists.Douwe Maan
2015-05-01Group milestones by title in the dashboard and all other issue viewsDominik Sander
This groups milestones by title for issue views like it has been done for the milestone dashboard/project overview. Before milestones with the same title would show up multiple times in the filter dropdown and one could only filter per project and milestone. Now the milestone filter is based on the title of the milestone, i.e. all issues marked with the same milestone title are shown.
2015-03-27Fix tests and unassigned filter for issues. Updated CHANGELOGDmitriy Zaporozhets
2015-03-27No magic numbers for issues filteringDmitriy Zaporozhets
2015-03-03Merge pull request #8092 from cirosantilli/factor-finder-permsDmitriy Zaporozhets
Factor permission check in issuable finder
2015-02-19Fix trending projects orderingDmitriy Zaporozhets
2015-02-06Add index on order columnsDmitriy Zaporozhets
2015-02-06Apply default scope to labels and remove one for notesDmitriy Zaporozhets
2015-02-03Rubocop: indentation fixes Yay!!!Dmitriy Zaporozhets
2015-02-03Rubocop: Style/CaseIndentation enabledDmitriy Zaporozhets
2015-01-01Factor permission check in issuable finderCiro Santilli
2014-12-05Add author filter for issues & merge requests pagesDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-10-28Merge branch 'dashboard_issues_and_mr' into 'master'Dmitriy Zaporozhets
Dashboard issues and merge request filters Fixes #1597 See merge request !1219
2014-10-27Do not filter out issues and merge requests related to user right away.Marin Jankovski
2014-10-24internal snippets: fix exposing of titleValery Sizov
2014-10-13Admin: user sortingValery Sizov
2014-10-09Snippets: public/internal/privateValery Sizov
2014-10-08Improve formatting of app/finders/README.mdCiro Santilli
2014-09-15Fix finder and tests for new membership modelsDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-09-14Huge replace of old users_project and users_group referencesDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-09-02Refactor finders. Prevent circular dependency errorDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-07-30Prevent duplicates in issue finder when filter by labelDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-07-30Fix issues label finderDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-07-29Migrate issue/mr labels from act_as_taggable to own labelsDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-07-23Explore areaDmitriy Zaporozhets
Create one place for exploring GitLab instance projects and groups for both signed in and anonymous users Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-07-02Fix project snippet comments loadingDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
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-06-05Add GroupFinder for collection all groups user has access toDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-04-28Default last_fetched_at to 0 for old clientsJacob Vosmaer
Users who have not refreshed their browser tab will poll GitLab using outdated JS. This change makes the server fall back to the old behavior (send all comments) for old clients, instead of throwing an exception for old clients.
2014-04-28Serialize last_fetched_at as a string with secondsJacob Vosmaer
2014-04-28Filter out old notes in NotesFinderJacob Vosmaer
2014-04-28Fail faster on an invalid target_typeJacob Vosmaer
2014-03-24Fix deprecation warning outputRobert Speicher
Removes the following from test output: DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: merge_requests, projects) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`.
2014-02-25Update tests and fix Finders readmeDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-02-25Move services for collecting items to FindersDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>