summaryrefslogtreecommitdiff
path: root/app/services/todos/destroy/confidential_issue_service.rb
blob: 06cf308a3cd622c9393679f29216cd9b60783fc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
module Todos
  module Destroy
    class ConfidentialIssueService < ::Todos::Destroy::BaseService
      extend ::Gitlab::Utils::Override

      attr_reader :issue

      def initialize(issue_id)
        @issue = Issue.find_by(id: issue_id)
      end

      private

      override :todos
      def todos
        Todo.where(target: issue)
      end

      override :todos_to_remove?
      def todos_to_remove?
        issue&.confidential?
      end

      override :project_ids
      def project_ids
        issue.project_id
      end
    end
  end
end