summaryrefslogtreecommitdiff
path: root/app/models/concerns/has_ref.rb
blob: d7089294efc1596099086d20e347c2e860a27e79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

module HasRef
  extend ActiveSupport::Concern

  def branch?
    !tag?
  end

  def git_ref
    if branch?
      Gitlab::Git::BRANCH_REF_PREFIX + ref.to_s
    elsif tag?
      Gitlab::Git::TAG_REF_PREFIX + ref.to_s
    end
  end
end