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

context.rb « groups « sidebars « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6e0c6c1a2dbec0569e8cfe5c9d0aa64ef557aa6a (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module Sidebars
  module Groups
    class Context < ::Sidebars::Context
      def initialize(current_user:, container:, **args)
        super(current_user: current_user, container: container, group: container, **args)
      end
    end
  end
end