summaryrefslogtreecommitdiff
path: root/app/models/concerns/sidebars/has_hint.rb
blob: 21dca39dca0a60b0779a66ed078d7357930cec2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

# This module has the necessary methods to store
# hints for menus. Hints are elements displayed
# when the user hover the menu item.
module Sidebars
  module HasHint
    def show_hint?
      false
    end

    def hint_html_options
      {}
    end
  end
end