Mercurial > hg > soundsoftware-site
view plugins/redmine_bibliography/config/routes.rb @ 1394:0f918e37e1d6 biblio_alt_search_auth
Major interface changes; will use virtual attributes to identify search results.
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Fri, 27 Sep 2013 18:43:29 +0100 |
parents | 4d5d25039a5f |
children |
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 :authorships do collection do post 'sort', :action => 'sort' end end resources :publications end