view vendor/plugins/redmine_bibliography/app/controllers/authors_controller.rb @ 613:3b63cea01e7b feature_36

Fixes bug preventing Projects being associated with newly created publications.
author luisf
date Tue, 23 Aug 2011 14:49:27 +0100
parents 8fa35731c959
children 156bd1153f47
line wrap: on
line source
class AuthorsController < ApplicationController
  
  def index
    @authors = Author.find(:all)
  end

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

  end

end