class Authorization < ApplicationRecord
  belongs_to :title_provider_group
  belongs_to :permission_label

  scope :hd, -> { joins(:permission_label).merge(PermissionLabel.hd) }
end
