summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKamil Trzcinski <ayufan@ayufan.eu>2016-09-16 12:46:33 +0200
committerKamil Trzcinski <ayufan@ayufan.eu>2016-09-16 12:46:33 +0200
commit9d8afa222c678a2222f5219458759897089d7dad (patch)
tree12ee1e84c0b24929ef94acf7d01e2bf32a8fcd50
parenteadfc3a156571a2e8188fb8dd8946776a2d1d0ba (diff)
downloadgitlab-ce-9d8afa222c678a2222f5219458759897089d7dad.tar.gz
Improve code comments
-rw-r--r--app/models/ci/build.rb2
-rw-r--r--app/policies/project_policy.rb2
-rw-r--r--app/services/auth/container_registry_authentication_service.rb4
3 files changed, 4 insertions, 4 deletions
diff --git a/app/models/ci/build.rb b/app/models/ci/build.rb
index 0b017c98916..57ef4646d24 100644
--- a/app/models/ci/build.rb
+++ b/app/models/ci/build.rb
@@ -179,7 +179,7 @@ module Ci
end
def repo_url
- auth = "gitlab-ci-token:#{ensure_token}@"
+ auth = "gitlab-ci-token:#{ensure_token!}@"
project.http_url_to_repo.sub(/^https?:\/\//) do |prefix|
prefix + auth
end
diff --git a/app/policies/project_policy.rb b/app/policies/project_policy.rb
index ce686af2ade..00c4c7b1440 100644
--- a/app/policies/project_policy.rb
+++ b/app/policies/project_policy.rb
@@ -64,7 +64,7 @@ class ProjectPolicy < BasePolicy
can! :read_deployment
end
- # Permissions given when an user is direct member of a group
+ # Permissions given when an user is team member of a project
def team_member_reporter_access!
can! :build_download_code
can! :build_read_container_image
diff --git a/app/services/auth/container_registry_authentication_service.rb b/app/services/auth/container_registry_authentication_service.rb
index 36120a5bc99..98da6563947 100644
--- a/app/services/auth/container_registry_authentication_service.rb
+++ b/app/services/auth/container_registry_authentication_service.rb
@@ -90,7 +90,7 @@ module Auth
def build_can_pull?(requested_project)
# Build can:
- # 1. pull from it's own project (for ex. a build)
+ # 1. pull from its own project (for ex. a build)
# 2. read images from dependent projects if creator of build is a team member
@authentication_abilities.include?(:build_read_container_image) &&
(requested_project == project || can?(current_user, :build_read_container_image, requested_project))
@@ -102,7 +102,7 @@ module Auth
end
def build_can_push?(requested_project)
- # Build can push only to project to from which he originates
+ # Build can push only to the project from which it originates
@authentication_abilities.include?(:build_create_container_image) &&
requested_project == project
end