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-06-07Add a rubocop rule to check if a method 'redirect_to' is used without ↵blackst0ne
explicitly set 'status' in 'destroy' actions of controllers
2017-06-05Refactor the DeleteUserWorkerNick Thomas
2017-04-13Implement Users::BuildServicegeoandri
2017-04-02Delete users asynchronouslyStan Hu
2017-03-27Implement new service for creating userGeorge Andrinopoulos
2017-02-08Merge branch 'rename_delete_services' into 'master'Rémy Coutable
Fix inconsistent naming for services that delete things See merge request !5803
2017-02-08Fix inconsistent naming for services that delete thingsdixpac
* Changed name of delete_user_service and worker to destroy * Move and change delete_group_service to Groups::DestroyService * Rename Notes::DeleteService to Notes::DestroyService
2017-02-07Use reCaptcha when an issue identified as spamJarka Kadlecova
2017-01-04Merge branch 'recaptcha_500' into 'master' Rémy Coutable
Properly handle failed reCAPTCHA on user registration See merge request !8403
2017-01-03Properly handle failed reCAPTCHA on user registrationDrew Blessing
If a user presses the 'Register' button too quickly after attempting to solve the reCAPTCHA, or the reCAPTCHA is not solved at all, the user would experience a 500 error. Now, the case is properly handled and the user will be sent back to the registration page with a clear error message and can try again.
2017-01-03Add email and password confirmation fields to registration formDrew Blessing
It's too easy to mistype an email or password when signing up. The support team is receiving an increasing number of requests because users mistype their email. We can eliminate this problem by requiring users to confirm the email before registering. The same issue can occur for the password field so we should add this, too. We should note that password confirmation is part of the default Devise forms. I don't know why/when GitLab removed it.
2016-12-09Merge branch 'destroy-session' into 'security' Robert Speicher
Destroy a user session when they delete their own account via browser This patch destroys a user's session when they delete their own account using a browser. A new session is created as they are redirected to the sign_in page. Issue: https://gitlab.com/gitlab-org/gitlab-ce/issues/25015 See merge request !2042
2016-08-06Enable Style/SpaceAroundEqualsInParameterDefault copGabriel Mazetto
2016-05-20current_user.confirmed_at.present? => current_user.confirmed?Felipe Artur
2016-05-16Change landing page when skipping confirmation email and add documentationFelipe Artur
2016-05-04Merge branch 'rs-unique-signup-fields' into 'master' Douwe Maan
Improve uniqueness of field names on the signup form Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/15075 See merge request !3826
2016-04-22Improved confirmation UXPhil Hughes
Closes #4228
2016-04-19Improve uniqueness of field names on the signup formRobert Speicher
Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/15075
2016-01-29Partially revert "Add IP check against DNSBLs at account sign-up"Robert Speicher
This partially reverts 6a5cd3ca - we keep the migration and add a new migration that reverts it in order to keep migration history intact.
2016-01-20Add IP blocking against DNSBL at sign-upTomasz Maczukin
2015-12-29When reCAPTCHA is disabled, allow registrations to go through without a codeStan Hu
2015-12-28reCAPTCHA is configurable through Admin Settings, no reload needed.Gabriel Mazetto
2015-12-28Fix failed specStan Hu
2015-12-27Add support for Google reCAPTCHA in user registration to prevent spammersStan Hu
2015-06-23Fix error when deleting a user who has projectsStan Hu
Closes #1856 Closes https://github.com/gitlabhq/gitlabhq/issues/9394
2015-05-28Fix current user removalDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-05-28You can not remove user if he/she is an only owner of groupDmitriy Zaporozhets
To prevent loose of group data you need to transfer or remove group first before you can remove user Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-04-20Fixed the Rails/ActionFilter copJeroen van Baarsen
Signed-off-by: Jeroen van Baarsen <jeroenvanbaarsen@gmail.com>
2015-02-05Redirect signup page to signin page.Douwe Maan
Resolves #1916.
2015-01-16Merge pull request #7925 from cirosantilli/unused-argumentsDmitriy Zaporozhets
Remove or prepend underscore _ to unused method arguments
2015-01-09Fix feature and testsDmitriy Zaporozhets
2015-01-08Improve application settings and write testsDmitriy Zaporozhets
2015-01-08Init ApplicationSettings resource with defaults from config fileDmitriy Zaporozhets
2014-12-28Remove or prepend _ to unused method argumentsCiro Santilli
2014-10-03Add parenthesis to function def with arguments.Ciro Santilli
2014-07-10Override strong params for sign up.Marin Jankovski
2014-07-04Redirect to sign in page after signup, this will show the correct flash message.Marin Jankovski
2014-06-30Fix signup and project visibilityDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2013-09-04Fix user remove tests. Remove user even if he has projectsDmitriy Zaporozhets
2013-05-16Add settings for user permission defaultsDmitry Medvinsky
“Can create groups” and “Can create teams” had hardcoded defaults to `true`. Sometimes it is desirable to prohibit these for newly created users by default.
2013-03-18Fix project_limit being ignored on signupDmitriy Zaporozhets
2013-02-06Add user delete option.Marin Jankovski
2013-01-18Add optional signup.Marin Jankovski