Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ssh_signature_policy.rb « commit_signatures « policies « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 34c8f12302947616ecaa8861283d671ef0dc1155 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

module CommitSignatures
  class SshSignaturePolicy < BasePolicy
    delegate { @subject.project }
  end
end