Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ssh_signature.rb « commit_signatures « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1e64e2b2978bba3bbcaaa0c0b81686afa1131970 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

module CommitSignatures
  class SshSignature < ApplicationRecord
    include CommitSignature
    include SignatureType

    belongs_to :key, optional: true

    def type
      :ssh
    end

    def signed_by_user
      key&.user
    end
  end
end