debian-mirror-gitlab/app/controllers/groups/achievements_controller.rb
2023-07-09 08:55:56 +05:30

16 lines
345 B
Ruby

# frozen_string_literal: true
module Groups
class AchievementsController < Groups::ApplicationController
feature_category :user_profile
urgency :low
before_action :authorize_read_achievement!
private
def authorize_read_achievement!
render_404 unless can?(current_user, :read_achievement, group)
end
end
end