Class: WeblogArchivesController

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

Overview

This RESTful controller is used to orchestrate and control the flow of the application relating to WeblogArchive objects.

Constant Summary

Constant Summary

Constants inherited from ApplicationController

ApplicationController::SEARCH_SCOPE_SEPARATOR

Instance Method Summary (collapse)

Methods inherited from ApplicationController

#all_changes, #changes, #synonyms

Methods included from RoleRequirementSystem

included

Instance Method Details

- (Object) show

  • GET /weblog_archives/1

  • GET /weblog_archives/1.xml



11
12
13
14
15
16
# File 'app/controllers/weblog_archives_controller.rb', line 11

def show
  respond_to do |format|
    format.html # show.html.erb
    format.xml { render :xml => @weblog_archive }
  end
end