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

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

module Achievements
  class AchievementPolicy < ::BasePolicy
    delegate { @subject.namespace }
  end
end