summaryrefslogtreecommitdiff
path: root/app/models/certificate.rb
blob: 01be5afa9c69516b162194510551b29f394b8553 (plain)
1
2
3
4
5
class Certificate < ApplicationRecord
  belongs_to :metadatum
  scope :signing, ->() { where(use: :signing) }
  scope :encryption, ->() { where(use: :encryption) }
end