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: 7a8d0653fcdd9981652ec91473e0535d29020e71 (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: true
  end
end