Class: InformationController

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

Instance Method Summary collapse

Methods inherited from ApplicationController

#dispatch, #get_locales, #is_dcmgr?, #set_application, #set_locale

Instance Method Details

#indexObject



2
3
# File 'app/controllers/information_controller.rb', line 2

def index
end

#rssObject



5
6
7
8
9
# File 'app/controllers/information_controller.rb', line 5

def rss
  @feed_title = "Wakame VDC Informations"
  @informations = Information.all
  render :layout => false
end