view plugins/redmine_bibliography/config/routes.rb @ 1324:2e54ae6ab02f redmine-2.2-integration

Searches the projects (to which to add a publication to).
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Wed, 19 Jun 2013 18:17:33 +0100
parents 2805873c0147
children 4d5d25039a5f
line wrap: on
line source
RedmineApp::Application.routes.draw do
    match "publications/show_bibtex_fields", :to => 'publications#show_bibtex_fields', :via => "get"

    match "publications/autocomplete_for_author", :to => 'publications#autocomplete_for_author', :via => "get"

    match "authors/show/:id", :to => 'authors#show'

    match "publications/add_project/:id", :to => 'publications#add_project'

    match "publications/autocomplete_for_project", :to => 'publications#autocomplete_for_project'


    resources :publications
end