summaryrefslogtreecommitdiff
path: root/app/models/commit_signatures/ssh_signature.rb
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