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
|