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: 0e5bb91660efcf2ce138a4159fb359546b92e89d (plain)
1
2
3
4
5
6
7
8
9
10
11
# 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, @current_user, @params = jira_connect_installation, user, params.dup
    end
  end
end