view vendor/plugins/redmine_bibliography/app/controllers/authors_controller.rb @ 1049:ab0e59f856ba cannam

Un-indent wiki para in checkout box
author Chris Cannam <chris.cannam@soundsoftware.ac.uk>
date Thu, 15 Nov 2012 14:13:55 +0000
parents 156bd1153f47
children
line wrap: on
line source
class AuthorsController < ApplicationController
  helper :publications
  include PublicationsHelper
  
  def index
    @authors = Author.find(:all)
  end

  def show
    @author = Author.find(params[:id])
  end

end