a11yist/app/controllers/application_controller.rb

16 lines
306 B
Ruby
Raw Normal View History

2024-07-15 14:31:54 +02:00
# frozen_string_literal: true
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
end