summaryrefslogtreecommitdiff
path: root/app/models/commit_signatures/ssh_signature.rb
blob: dbfbe0c388959ee2bfac8f17a9692e9a8feb0290 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module CommitSignatures
  class SshSignature < ApplicationRecord
    include CommitSignature

    belongs_to :key, optional: false
  end
end