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

base_service.rb « badges « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4f87426bd38e678b3e5ce741513bda38370f10a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
module Badges
  class BaseService
    protected

    attr_accessor :params

    def initialize(params = {})
      @params = params.dup
    end
  end
end