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
2021-04-21Add latest changes from gitlab-org/gitlab@13-11-stable-eev13.11.0-rc43GitLab Bot
2021-03-16Add latest changes from gitlab-org/gitlab@13-10-stable-eev13.10.0-rc40GitLab Bot
2021-02-18Add latest changes from gitlab-org/gitlab@13-9-stable-eev13.9.0-rc42GitLab Bot
2020-10-21Add latest changes from gitlab-org/gitlab@13-5-stable-eev13.5.0-rc42GitLab Bot
2020-09-19Add latest changes from gitlab-org/gitlab@13-4-stable-eeGitLab Bot
2020-08-20Add latest changes from gitlab-org/gitlab@13-3-stable-eeGitLab Bot
2020-07-20Add latest changes from gitlab-org/gitlab@13-2-stable-eeGitLab Bot
2020-04-20Add latest changes from gitlab-org/gitlab@12-10-stable-eeGitLab Bot
2020-03-03Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-02-20Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-17Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-18Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-11Fix N+1s queriesDouglas Barbosa Alexandre
2019-09-10Make Rubocop happyDouglas Barbosa Alexandre
2019-09-10Remove N+1 queriesDouglas Barbosa Alexandre
2019-09-06Fix public/private/internal fork countsCamil Staps
2019-06-25Make checks for continue_params more robustMarkus Koller
The check for continue_params&.key?(:to) in Projects::ImportsController caused an exception in redirect_to if this key contained a nil value. Since url_for won't add any params for an empty hash, we can just return that in continue_params if params[:continue] isn't present, and simplify the code in the controllers to check for the values we actually want to use.
2018-09-26Enable even more frozen string in app/controllersgfyoung
Enables frozen string for some vestigial files as well as the following: * app/controllers/projects/**/*.rb * app/controllers/sherlock/**/*.rb * app/controllers/snippets/**/*.rb * app/controllers/users/**/*.rb Partially addresses #47424.
2018-09-11Disable existing offenses for the CodeReuse copsYorick Peterse
This whitelists all existing offenses for the various CodeReuse cops, of which most are triggered by the CodeReuse/ActiveRecord cop.
2018-02-01Track and act upon the number of executed queriesYorick Peterse
This ensures that we have more visibility in the number of SQL queries that are executed in web requests. The current threshold is hardcoded to 100 as we will rarely (maybe once or twice) change it. In production and development we use Sentry if enabled, in the test environment we raise an error. This feature is also only enabled in production/staging when running on GitLab.com as it's not very useful to other users.
2017-09-20Employ ForkProjectsFinder in ForksControllerMark Fletcher
2017-07-05Create and use project path helpers that only need a project, no namespaceDouwe Maan
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.
2016-11-15Add authentication for for create action. Add more tests for for new and ↵Cagdas Gerede
create actions
2016-11-12Add a new line after the guard statement to be compatible with the style guide.Cagdas Gerede
2016-11-12Replaces conditional with guard statement.Cagdas Gerede
2016-11-12Temporary changeCagdas Gerede
2016-11-12Replace conditional with a guard statement.Cagdas Gerede
2016-11-10Fixing the issue of visiting a project fork url giving 500 error when not ↵Cagdas Gerede
signed in instead of being redirected to the sign in page. The main reason is ApplicationController skips authentication if the project exists. To fix the issue, forced the authentication in ForksController when current_user is nil.
2016-03-20Use the configured Kaminari "per page" defaultRobert Speicher
2016-03-13ContinueToParams -> ContinueParamsZeger-Jan van de Weg
2016-03-13Check redirect path in the continue_paramsZeger-Jan van de Weg
Fixes https://dev.gitlab.org/gitlab/gitlabhq/issues/2649 https://gitlab.com/gitlab-org/gitlab-ce/issues/13956
2016-03-03Merge branch 'refactor-projects-list' into 'master' Dmitriy Zaporozhets
Refactor projects list 1. Fix double bottom border if pagination 2. Fix broken search on forks page 4. Remove duplicate js logic 4. Remove unused show all link 5. Remove duplicate “no project” message in different views After this merge request you can easily render shared projects template with all necessary html/js included to make searchable list with pagination. All you need to provide is controller that returns projects list with seach nad pagination and render html form with project-filter-form id and text field with filter_projects name. Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> cc @jschatz1 @DouweM See merge request !3075
2016-03-03Refactor projects listDmitriy Zaporozhets
1. Fix double bottom border if pagination 2. Fix broken search on forks page 4. Remove duplicate js logic 4. Remove unused show all link 5. Remove duplicate “no project” message in different views After this merge request you can easily render shared projects template with all necessary html/js included to make searchable list with pagination. All you need to provide is controller that returns projects list with seach nad pagination and render html form with project-filter-form id and text field with filter_projects name. Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2016-03-02Add specs to ForksController#index.Rubén Dávila
* Also refactor query to get projects accessible for current user. ProjectsFinder actually return public projects when no user is passed.
2016-03-01Reuse query from ProjectsFinder to get projects accessible to current user.Rubén Dávila
2016-02-27Logged in user should be able to read internal forks.Rubén Dávila
2016-02-27Improve implementation to check read access to forks and add pagination.Rubén Dávila
2016-02-19Mention project name in fork noticeAchilleas Pipinellis
2016-01-20Some CSS and sorting fixes.Rubén Dávila
2016-01-20Add ability to sort forks. #2406Rubén Dávila
2016-01-20Add fork button and implement ability to distinguish between public and ↵Rubén Dávila
protected forks. #2406
2016-01-20Use Project creator's avatar in fork listing. #2406Rubén Dávila
2016-01-20Setup new fork link in sidebar and routes. #2406Rubén Dávila
2015-12-21Add tests for new functionalityDouwe Maan
2015-12-18Fix specs and behavior for LFS filesDouwe Maan
2015-12-18Automatically fork a project when not allowed to edit a file.Douwe Maan
2015-09-11Import forked repositories asynchronously to prevent large repositories from ↵Stan Hu
timing out Use import_status to track async import status and give feedback to the user Closes #2388 Closes #2400
2015-04-30Add a page title to every page.Douwe Maan
2015-04-20Fixed the Rails/ActionFilter copJeroen van Baarsen
Signed-off-by: Jeroen van Baarsen <jeroenvanbaarsen@gmail.com>