summaryrefslogtreecommitdiff
path: root/lib/gitlab/gitlab_import
diff options
context:
space:
mode:
authorDouwe Maan <douwe@gitlab.com>2015-03-31 16:34:13 +0200
committerDouwe Maan <douwe@gitlab.com>2015-03-31 16:34:13 +0200
commit737f322e41a640194b3df1a4c6cd2b1019268221 (patch)
treee9d0682ac0addad49826cd30a55e54d64a6e21bd /lib/gitlab/gitlab_import
parent33a8f53f7a8fdc40d0f0ee4245258c8dba99198a (diff)
downloadgitlab-ce-737f322e41a640194b3df1a4c6cd2b1019268221.tar.gz
Import GitHub, Bitbucket or GitLab.com projects owned by authenticated user into current namespace.
Diffstat (limited to 'lib/gitlab/gitlab_import')
-rw-r--r--lib/gitlab/gitlab_import/client.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/gitlab/gitlab_import/client.rb b/lib/gitlab/gitlab_import/client.rb
index f48ede9d067..9c00896c913 100644
--- a/lib/gitlab/gitlab_import/client.rb
+++ b/lib/gitlab/gitlab_import/client.rb
@@ -28,6 +28,10 @@ module Gitlab
client.auth_code.get_token(code, redirect_uri: redirect_uri).token
end
+ def user
+ api.get("/api/v3/user").parsed
+ end
+
def issues(project_identifier)
lazy_page_iterator(PER_PAGE) do |page|
api.get("/api/v3/projects/#{project_identifier}/issues?per_page=#{PER_PAGE}&page=#{page}").parsed