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

custom_emoji_controller.rb « groups « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f202c9febbac94c79fb0d59f0fe7552db2cfd134 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

module Groups
  class CustomEmojiController < Groups::ApplicationController
    feature_category :code_review_workflow
    urgency :low

    before_action do
      render_404 unless Feature.enabled?(:custom_emoji)
    end
  end
end