15 lines
306 B
Ruby
15 lines
306 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ApplicationController < ActionController::Base
|
|
before_action :initialize_navbar
|
|
|
|
private
|
|
|
|
def initialize_navbar
|
|
@navbar_items = [
|
|
{ label: 'Dashboard', path: :root },
|
|
{ label: 'Home', path: :home }
|
|
]
|
|
@search_url = nil # root_url
|
|
end
|
|
end
|