9 lines
171 B
Ruby
9 lines
171 B
Ruby
# frozen_string_literal: true
|
|
|
|
module CommitSignatures
|
|
class SshSignature < ApplicationRecord
|
|
include CommitSignature
|
|
|
|
belongs_to :key, optional: true
|
|
end
|
|
end
|