view plugins/redmine_bibliography/app/controllers/authors_controller.rb @ 1210:16826c3afbba redmine-2.2-integration

Merge from branch "live"
author Chris Cannam
date Wed, 23 Jan 2013 13:15:33 +0000
parents b4b72f1eb644
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