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
2020-10-05Add latest changes from gitlab-org/gitlab@13-5-stable-eev13.5.0-rc32GitLab Bot
2020-09-19Add latest changes from gitlab-org/gitlab@13-4-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
2019-11-01Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-13Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-10Optimize queries for snippet listingsMarkus Koller
- Avoid N+1 queries for authors and comment counts - Avoid an additional snippet existence query
2019-08-07Fix display of own projects on the starred projects user profile tabCamil Staps
2019-08-07Refactor UsersController to present personal, contributed and starred ↵Camil Staps
projects in the same way
2019-08-07Add pagination to {user}/starred viewCamil Staps
2019-08-07Rewrite StarredProjectsFinder to use ProjectsFinderCamil Staps
2019-08-07Add "Starred projects" tab to user overviewCamil Staps
2018-12-13Resolve "Redesign project lists UI"Martin Wortschack
2018-11-29Merge branch 'security-fix-pat-web-access' into 'master'Cindy Pallares
[master] Resolve "Personal access token with only `read_user` scope can be used to authenticate any web request" See merge request gitlab/gitlabhq!2583
2018-10-15Resolve "Personal projects pagination in Profile Overview tab is broken"Martin Wortschack
2018-10-04Resolve "Add new "Overview" tab on user profile page"Martin Wortschack
2018-09-19Enable frozen string in app/controllers/**/*.rbgfyoung
Enables frozen string for the following: * app/controllers/*.rb * app/controllers/admin/**/*.rb * app/controllers/boards/**/*.rb * app/controllers/ci/**/*.rb * app/controllers/concerns/**/*.rb Partially addresses #47424.
2018-07-24Add an option to have a private profile on GitLabJX Terry
2018-04-08[Rails5] Add `safe_params` helperblackst0ne
Rails 5.0 requires to explicitly permit attributes when building a URL using current `params` object. The `safe_params` helper allows developers to just call `safe_params.merge(...)` instead of manually adding `permit` to every call. https://github.com/rails/rails/pull/20868
2018-02-22Port `read_cross_project` ability from EEBob Van Landuyt
2017-12-07Resolve "Display member role per project"Mike Greiling
2017-11-06Resolve "DashboardController#activity.json is slow due to SQL"Francisco Javier López
2017-07-19refactor async calendar dataMike Greiling
2017-06-21Enable Style/DotPosition Rubocop :cop:Grzegorz Bizon
2017-06-12Refactor atom builder by using xml.atom layoutTieu-Philippe KHIM
2017-05-19Refactor to more robust implementationMichael Kozono
In order to avoid string manipulation or modify route params (to make them unambiguous for `url_for`), we are accepting a behavior change: When being redirected to the canonical path for a group, if you requested a group show path starting with `/groups/…` then you’ll now be redirected to the group at root `/…`.
2017-05-10Merge branch 'snippets-finder-visibility' into 'security'Douwe Maan
Refactor snippets finder & dont return internal snippets for external users See merge request !2094
2017-05-05Dry up routable lookups. Fixes #30317Michael Kozono
Note: This changes the behavior of user lookups (see the spec change) so it acts the same way as groups and projects. Unauthenticated clients attempting to access a user page will be redirected to login whether the user exists and is publicly restricted, or does not exist at all.
2017-05-05Resolve discussionsMichael Kozono
2017-05-05RefactorMichael Kozono
2017-05-05Redirect from redirect routes to canonical routesMichael Kozono
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-03-18Fixed pagination in projects & snippets on user pagePhil Hughes
Changed it from being json links to normal links & then doing a AJAX request to get the content. Closes #29624
2016-11-17Check all namespaces on validation of new username.Bryce Johnson
2016-11-09Merge branch '23403-fix-events-for-private-project-features' into 'security'Robert Speicher
Respect project visibility settings in the contributions calendar This MR fixes a number of bugs relating to access controls and date selection of events for the contributions calendar Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/23403 See merge request !2019 Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-10-15Add exists to users routes and fix endpoint.Bryce Johnson
2016-10-15Attempt to fix username validation ruby.Bryce Johnson
2016-10-15Stringify username before passing to ActiveRecord.Bryce Johnson
2016-10-15Make UX upgrades to SignIn/Register views.Bryce Johnson
- Tab between register and sign in forms - Add individual input validation error messages - Validate username - Update many styles for all login-box forms
2016-09-26Fix snippets paginationRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-09-16Replace contributions calendar timezone payload with datesClement Ho
2016-05-16Group the contributing calendar by dayPhil Hughes
This aligns the boxes correctly with the day on the left side of the calendar
2016-05-02Add snippet tab under user profileLong Nguyen
2016-04-18Code fixesFelipe Artur
2016-04-18Fix codeFelipe Artur
2016-04-18Add specs and fix codeFelipe Artur
2016-04-18Move verification to abilitiesFelipe Artur
2016-04-18Restrict user profiles based on restricted visibility levelsFelipe Artur
2016-03-22Merge branch 'master' into issue_12658Douwe Maan
# Conflicts: # app/models/issue.rb # app/views/projects/_home_panel.html.haml # app/views/shared/projects/_project.html.haml # db/schema.rb # spec/models/project_spec.rb
2016-03-20Use the configured Kaminari "per page" defaultRobert Speicher