To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / vendor / plugins / redmine_bibliography / app / controllers / authors_controller.rb @ 1052:6674e52e20bf

History | View | Annotate | Download (216 Bytes)

1
class AuthorsController < ApplicationController
2
  helper :publications
3
  include PublicationsHelper
4
  
5
  def index
6
    @authors = Author.find(:all)
7
  end
8

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

    
13
end