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
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
2016-03-17Code improvements and add Create group serviceFelipe Artur
2016-03-10Prevent projects to have higher visibility than groupsFelipe Artur
Prevent Groups to have smaller visibility than projects Add default_group_visibility_level to configuration Code improvements
2016-03-10Code improvementsFelipe Artur
2016-03-03In UsersController#calendar_activities, when Date isn't parsable, fallback ↵Rémy Coutable
to Date.today For some reason, GoogleBot accesses /u/:username/calendar_activities without a :date param, but then the view was trying to call #to_s(:short) which doesn't exist on nil, leading to the following Sentry report: https://sentry.gitlap.com/gitlab/gitlabcom/issues/1182/
2016-03-01Merge branch 'master' into improve-user-tabsAlfredo Sumaran
2016-03-01Make url and actions to be the same nameAlfredo Sumaran
2016-03-01Respond with 'show' view. Tab content will be loaded dinamicallyAlfredo Sumaran
2016-03-01Respond to .json requestsAlfredo Sumaran
2016-02-29Add routes and actions for dynamic tab loadingJosh Frye
2016-02-22include contributions from forked projects on profile calendarJames Lopez
2016-02-04Various filter fixesJosh Frye
2016-01-04remove public field from namespace and refactoringValery Sizov
2015-11-18Refactor UsersController to not kill the databaseYorick Peterse
Previously this controller would in multiple places load tons (read: around 65000) project and/or group IDs into memory. These changes in combination with the previous commits significantly cut down loading times of user profile pages and the Atom feeds of users.
2015-08-27Make all profile publicValery Sizov
2015-05-01Fix title on user page.Douwe Maan
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>
2015-03-23Merge branch 'userpage-activity-scroll'Dmitriy Zaporozhets
Conflicts: app/controllers/users_controller.rb