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 / plugins / redmine_bibliography / config / routes.rb @ 1580:fa3d9c22497c

History | View | Annotate | Download (629 Bytes)

1
RedmineApp::Application.routes.draw do
2
    match "publications/show_bibtex_fields", :to => 'publications#show_bibtex_fields', :via => "get"
3

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

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

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

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

    
12
    resources :authorships do
13
        collection do
14
            post 'sort', :action => 'sort'
15
        end
16
    end
17

    
18
    resources :publications
19
end