2024-07-15 14:31:54 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2024-07-15 02:19:27 +02:00
|
|
|
class ApplicationController < ActionController::Base
|
2024-07-15 14:31:54 +02:00
|
|
|
before_action :initialize_navbar
|
|
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
|
|
def initialize_navbar
|
|
|
|
|
@navbar_items = [
|
|
|
|
|
{ label: 'Dashboard', path: :root },
|
|
|
|
|
{ label: 'Home', path: :home }
|
|
|
|
|
]
|
|
|
|
|
@search_url = nil # root_url
|
|
|
|
|
end
|
2024-07-15 02:19:27 +02:00
|
|
|
end
|