Mercurial > hg > soundsoftware-site
view vendor/plugins/redmine_bibliography/app/controllers/authors_controller.rb @ 1033:13a8e4ac88d5 cannam
Don't want "Create and Continue" when creating a new project
author | Chris Cannam <chris.cannam@soundsoftware.ac.uk> |
---|---|
date | Tue, 13 Nov 2012 12:10:20 +0000 |
parents | 156bd1153f47 |
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