Class: WelcomeController

Inherits:
ApplicationController show all
Defined in:
frontend/app/controllers/welcome_controller.rb,
public/app/controllers/welcome_controller.rb

Constant Summary

Constants included from Searchable

Searchable::ABSTRACT

Instance Method Summary collapse

Methods inherited from ApplicationController

#archivesspace, can_access?, permission_mappings, set_access_control

Methods included from JsonHelper

#merge_notes, #process_json_notes

Methods included from Searchable

#default_search_opts, #get_filter_years, #handle_results, #html_notes, #process_results, #process_search_results, #repo_context, #search_terms, #set_up_advanced_search, #set_up_and_run_search, #set_up_search, #strip_facet_fields

Methods included from HandleFaceting

#fetch_only_facets, #get_pretty_facet_value, #strip_facets

Methods included from ManipulateNode

#inheritance, #process_mixed_content, #strip_mixed_content

Instance Method Details

#indexObject



4
5
6
7
8
9
10
11
12
13
14
15
# File 'frontend/app/controllers/welcome_controller.rb', line 4

def index
  info = JSONModel::HTTP::get_json('/')
  view_context.database_warning( info )

  if session[:user] && @repositories.length === 0
    if user_can?('create_repository')
      flash.now[:info] = I18n.t("repository._frontend.messages.create_first_repository")
    else
      flash.now[:info] = I18n.t("repository._frontend.messages.no_access_to_repositories")
    end
  end
end

#showObject



2
3
4
5
6
# File 'public/app/controllers/welcome_controller.rb', line 2

def show
  @page_title = I18n.t 'brand.welcome_page_title'
  @search = Search.new(params)
  render
end