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