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
diff options
context:
space:
mode:
authorStan Hu <stanhu@gmail.com>2018-07-01 15:13:15 +0300
committerStan Hu <stanhu@gmail.com>2018-07-01 15:13:15 +0300
commit3735ce43fc5adfb82fb22730978ba0bca696c37d (patch)
tree94555c533d609fd1286b5e8056d0112caabd04bb /lib/bitbucket_server
parent6b698a93bb87e5c4b236a55172b28cdb3a7fadd8 (diff)
Add a Reconfigure button and improve layout of import screen
Diffstat (limited to 'lib/bitbucket_server')
-rw-r--r--lib/bitbucket_server/connection.rb2
-rw-r--r--lib/bitbucket_server/representation/pull_request.rb4
2 files changed, 5 insertions, 1 deletions
diff --git a/lib/bitbucket_server/connection.rb b/lib/bitbucket_server/connection.rb
index 7374b73fa60..5c3bea3b743 100644
--- a/lib/bitbucket_server/connection.rb
+++ b/lib/bitbucket_server/connection.rb
@@ -7,7 +7,7 @@ module BitbucketServer
def initialize(options = {})
@api_version = options.fetch(:api_version, DEFAULT_API_VERSION)
@base_uri = options[:base_uri]
- @username = options[:username]
+ @username = options[:user]
@token = options[:password]
end
diff --git a/lib/bitbucket_server/representation/pull_request.rb b/lib/bitbucket_server/representation/pull_request.rb
index 96a27564641..3e460f04064 100644
--- a/lib/bitbucket_server/representation/pull_request.rb
+++ b/lib/bitbucket_server/representation/pull_request.rb
@@ -27,6 +27,10 @@ module BitbucketServer
end
end
+ def merged?
+ state == 'merged'
+ end
+
def created_at
raw['createdDate']
end