comparison plugins/redmine_bibliography/app/controllers/authors_controller.rb @ 1484:51364c0cd58f redmine-2.4-integration

Merge from live branch. Still need to merge manually in files overridden by plugins.
author Chris Cannam
date Wed, 15 Jan 2014 09:59:14 +0000
parents b4b72f1eb644
children
comparison
equal deleted inserted replaced
1464:261b3d9a4903 1484:51364c0cd58f
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