Class: WelcomeController
- Inherits:
-
ApplicationController
- Object
- ActionController::Base
- ApplicationController
- WelcomeController
- Defined in:
- app/controllers/welcome_controller.rb
Overview
– copyright ChiliProject is a project management system.
Copyright (C) 2010-2013 the ChiliProject Team
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
See doc/COPYRIGHT.rdoc for more details. ++
Instance Method Summary (collapse)
Methods included from Redmine::MenuManager::MenuController
#current_menu_item, included, #menu_items, #redirect_to_project_menu_item
Methods included from Redmine::Search::Controller
#default_search_scope, #default_search_scopes, included
Methods included from Redmine::I18n
#current_language, #day_name, #find_language, #format_date, #format_time, included, #l, #l_hours, #l_or_humanize, #ll, #month_name, #set_language_if_valid, #valid_languages
Instance Method Details
- (Object) index
18 19 20 21 |
# File 'app/controllers/welcome_controller.rb', line 18 def index @news = News.latest User.current @projects = Project.latest User.current end |
- (Object) robots
23 24 25 26 |
# File 'app/controllers/welcome_controller.rb', line 23 def robots @projects = Project.all_public.active render :layout => false, :content_type => 'text/plain' end |