debian-mirror-gitlab/app/controllers/profiles/comment_templates_controller.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
298 B
Ruby
Raw Normal View History

2023-04-23 21:23:45 +05:30
# frozen_string_literal: true
module Profiles
2023-06-20 00:43:36 +05:30
class CommentTemplatesController < Profiles::ApplicationController
2023-04-23 21:23:45 +05:30
feature_category :user_profile
before_action do
render_404 unless Feature.enabled?(:saved_replies, current_user)
@hide_search_settings = true
end
end
end