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

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

module ErrorTracking
  class BasePolicy < ::BasePolicy
    delegate { @subject.gitlab_project }
  end
end