gitlab-org--gitlab-foss/lib/gitlab/auth/result.rb

21 lines
446 B
Ruby
Raw Normal View History

module Gitlab
module Auth
2016-09-19 12:23:18 +00:00
Result = Struct.new(:actor, :project, :type, :authentication_abilities) do
def ci?(for_project)
type == :ci &&
project &&
project == for_project
end
def lfs_deploy_token?(for_project)
type == :lfs_deploy_token &&
actor.try(:has_access_to?, for_project)
end
def success?
actor.present? || type == :ci
end
end
end
end