summaryrefslogtreecommitdiff
path: root/lib/tasks/import.rake
Commit message (Collapse)AuthorAgeFilesLines
* Restore GH enterprise support in the Rake taskYorick Peterse2017-11-081-3/+3
| | | | This restores GH enterprise support in the GH import Rake task.
* Fix the GH importer Rake taskgithub-enterprise-support-importerYorick Peterse2017-11-081-14/+18
| | | | | This task was broken in a few areas with the removal of the old GitHub importer code.
* Replace old GH importer with the parallel importergithub-importer-refactorYorick Peterse2017-11-071-2/+4
|
* Ensure the `import:github` task doesn't schedule an import jobRémy Coutable2017-10-051-4/+9
| | | | | | | The point of this task is to run the import in the foreground, so it shouldn't schedule an import job! Signed-off-by: Rémy Coutable <remy@rymai.me>
* Don't mark the import as finished if it wasn't successful in the ↵Rémy Coutable2017-10-051-4/+10
| | | | | | `import:github` task Signed-off-by: Rémy Coutable <remy@rymai.me>
* `current_application_settings` belongs on `Gitlab::CurrentSettings`Sean McGivern2017-08-311-1/+1
| | | | | | | | | | | | | | | | The initializers including this were doing so at the top level, so every object loaded after them had a `current_application_settings` method. However, if someone had rack-attack enabled (which was loaded before these initializers), it would try to load the API, and fail, because `Gitlab::CurrentSettings` didn't have that method. To fix this: 1. Don't include `Gitlab::CurrentSettings` at the top level. We do not need `Object.new.current_application_settings` to work. 2. Make `Gitlab::CurrentSettings` explicitly `extend self`, as we already use it like that in several places. 3. Change the initializers to use that new form.
* Migrate creation of nested groups into a serviceBob Van Landuyt2017-08-231-17/+1
|
* Fix small typoe on GitHub import rake taskDouglas Barbosa Alexandre2017-08-071-1/+1
|
* Use a custom root endpoint if defined on GH ominiauth provider settingsDouglas Barbosa Alexandre2017-08-071-1/+1
|
* Use project.import_url to fetch repositories from GithubDouglas Barbosa Alexandre2017-08-071-0/+1
|
* backports changed import logic from pull mirroring feature into CETiago Botelho2017-06-051-1/+1
|
* Add basic progress output to GitHub importDouglas Barbosa Alexandre2017-04-251-2/+2
|
* Fix undefined attribute params from import taskDouglas Barbosa Alexandre2017-04-251-1/+0
|
* Refactor rake task to to import GitHub repositoresDouglas Barbosa Alexandre2017-04-241-89/+22
|
* Does not remove the GitHub remote when importing from GitHubDouglas Barbosa Alexandre2017-04-181-1/+0
|
* Fix rake test to import Github repositoriesDouglas Barbosa Alexandre2017-04-071-2/+9
|
* Github import rake taskJames Lopez2017-04-061-0/+204