Commit b2aae5a2 authored by Alex Pooley's avatar Alex Pooley

Merge branch 'mk_recategorize_endpoints_to_plan' into 'master'

Change feature category of certain endpoints from workspace to plan

See merge request gitlab-org/gitlab!84192
parents 32696c54 0afe7a77
# frozen_string_literal: true # frozen_string_literal: true
class Profiles::NotificationsController < Profiles::ApplicationController class Profiles::NotificationsController < Profiles::ApplicationController
feature_category :users feature_category :team_planning
def show def show
@user = current_user @user = current_user
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
class SentNotificationsController < ApplicationController class SentNotificationsController < ApplicationController
skip_before_action :authenticate_user! skip_before_action :authenticate_user!
feature_category :users feature_category :team_planning
def unsubscribe def unsubscribe
@sent_notification = SentNotification.for(params[:id]) @sent_notification = SentNotification.for(params[:id])
......
...@@ -5,7 +5,7 @@ module API ...@@ -5,7 +5,7 @@ module API
class NotificationSettings < ::API::Base class NotificationSettings < ::API::Base
before { authenticate! } before { authenticate! }
feature_category :users feature_category :team_planning
helpers ::API::Helpers::MembersHelpers helpers ::API::Helpers::MembersHelpers
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment