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
2016-12-15BB importer: Fixed bug with putting expired token to a project.clone_urlValery Sizov
2016-11-22Fix missing Bitbucket ProjectController changes for specifying namespace/projectStan Hu
2016-11-22Clone Bitbucket repositories over HTTPSDouglas Barbosa Alexandre
2016-05-10create import data in serviceJames Lopez
2016-04-07refactored create_or_update_import_dataJames Lopez
2016-04-07refactored a few things based on MR feedbackJames Lopez
2016-04-05some refactoring to symbolise keys across importers and left a TODOJames Lopez
2016-03-29more fixes after doing more manual testing on importingJames Lopez
2016-03-29fixing a few issues after testing importsJames Lopez
2016-03-22first round of fixes and spec fixesJames Lopez
2016-03-22encrypt credentials in project_creator for bitbucket by defaultJames Lopez
2015-12-15Fixed Rubocop offensesGabriel Mazetto
2015-08-23Remove user OAuth tokens stored in database for Bitbucket, GitHub, and GitLabStan Hu
and request them each session. Pass these tokens to the project import data. This prevents the need to encrypt these tokens and clear them in case they expire or get revoked. For example, if you deleted and re-created OAuth2 keys for Bitbucket, you would get an Error 500 with no way to recover: ``` Started GET "/import/bitbucket/status" for x.x.x.x at 2015-08-07 05:24:10 +0000 Processing by Import::BitbucketController#status as HTML Completed 500 Internal Server Error in 607ms (ActiveRecord: 2.3ms) NameError (uninitialized constant Import::BitbucketController::Unauthorized): app/controllers/import/bitbucket_controller.rb:77:in `rescue in go_to_bitbucket_for_permissions' app/controllers/import/bitbucket_controller.rb:74:in `go_to_bitbucket_for_permissions' app/controllers/import/bitbucket_controller.rb:86:in `bitbucket_unauthorized' ``` Closes #1871
2015-04-06Use Projects::CreateService to create imported projects so hooks are executed.Douwe Maan
2015-02-24Add Bitbucket importer.Douwe Maan