summaryrefslogtreecommitdiff
path: root/lib/sidebars/groups/context.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sidebars/groups/context.rb')
-rw-r--r--lib/sidebars/groups/context.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/sidebars/groups/context.rb b/lib/sidebars/groups/context.rb
new file mode 100644
index 00000000000..6e0c6c1a2db
--- /dev/null
+++ b/lib/sidebars/groups/context.rb
@@ -0,0 +1,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