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

base_service.rb « boards « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b2069ca825a3c3370a11c06351ddacd53ccd5401 (plain)
1
2
3
4
5
module Boards
  class BaseService < ::BaseService
    delegate :board, to: :project
  end
end