summaryrefslogtreecommitdiff
path: root/app/models/sidebars/projects/context.rb
blob: 4c82309035d047b77f8083735df922c94f577d62 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

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