gitlab-ce/app/models/concerns/sidebars/renderable.rb

13 lines
247 B
Ruby

# frozen_string_literal: true
module Sidebars
module Renderable
# This method will control whether the menu or menu_item
# should be rendered. It will be overriden by specific
# classes.
def render?
true
end
end
end