view vendor/plugins/redmine_bibliography/app/controllers/authors_controller.rb @ 616:156bd1153f47 feature_36

Fix for Feature #235. This view is no longer a priority.
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Tue, 23 Aug 2011 17:16:15 +0100
parents 8fa35731c959
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