Nuevo plugin Redmine Questions 0.0.7 light
This commit is contained in:
parent
c5b56fffec
commit
7de6fb4627
51 changed files with 2162 additions and 0 deletions
14
plugins/redmine_questions/config/routes.rb
Normal file
14
plugins/redmine_questions/config/routes.rb
Normal file
|
@ -0,0 +1,14 @@
|
|||
# Plugin's routes
|
||||
# See: http://guides.rubyonrails.org/routing.html
|
||||
|
||||
resources :questions do
|
||||
collection do
|
||||
get :autocomplete_for_topic
|
||||
get :topics
|
||||
end
|
||||
member do
|
||||
get :vote
|
||||
end
|
||||
end
|
||||
|
||||
match "issues/:issue_id/move_to_forum/:board_id" => "questions#convert_issue", :via => [:get, :post]
|
Loading…
Add table
Add a link
Reference in a new issue