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

group_parser.rb « reference_parser « banzai « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: df74cebebba857cb262fcdb5ee5cdf73bddf5b9e (plain)
1
2
3
4
5
6
7
module Banzai
  module ReferenceParser
    class GroupParser < UserParser
      self.reference_type = :group
    end
  end
end