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

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

module JiraConnectSubscriptions
  class BaseService < ::BaseService
    attr_accessor :jira_connect_installation, :current_user, :params

    def initialize(jira_connect_installation, user = nil, params = {})
      @jira_connect_installation = jira_connect_installation
      @current_user = user
      @params = params.dup
    end
  end
end