Class: Avo::HomeController

Inherits:
ApplicationController show all
Defined in:
app/controllers/avo/home_controller.rb

Instance Method Summary collapse

Methods inherited from ApplicationController

#exception_logger, #hello, #turbo_frame_request?

Methods included from Concerns::Breadcrumbs

#add_breadcrumb, #avo_breadcrumbs

Methods included from UrlHelpers

#edit_resource_path, #new_resource_path, #preview_resource_path, #related_resources_path, #resource_attach_path, #resource_detach_path, #resource_path, #resource_view_path, #resources_path

Methods included from ApplicationHelper

#a_button, #a_link, #button_classes, #card_classes, #chart_color, #decode_filter_params, #empty_state, #encode_filter_params, #frame_id, #get_model_class, #input_classes, #mount_path, #number_to_social, #render_license_warning, #root_path_without_url, #svg, #white_panel_classes

Methods included from ResourcesHelper

#field_wrapper, #filter_wrapper, #index_field_wrapper, #item_select_all_input, #item_selector_init, #item_selector_input, #resource_grid, #resource_table

Methods included from InitializesAvo

#_current_user, #context, #init_app

Instance Method Details

#failed_to_loadObject



22
23
# File 'app/controllers/avo/home_controller.rb', line 22

def failed_to_load
end

#indexObject



5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# File 'app/controllers/avo/home_controller.rb', line 5

def index
  if Avo.configuration.home_path.present?
    # If the home_path is a block run it, if not, just use it
    computed_path = if Avo.configuration.home_path.respond_to? :call
      instance_exec(&Avo.configuration.home_path)
    else
      Avo.configuration.home_path
    end

    redirect_to computed_path
  elsif !Rails.env.development?
    @page_title = "Get started"
    resource = Avo.resource_manager.all.min_by { |resource| resource.model_key }
    redirect_to resources_path(resource: resource)
  end
end