Advertisement
Guest User

Untitled

a guest
Jan 17th, 2019
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 53.00 KB | None | 0 0
  1. home / welcome#index
  2. signin GET|POST /login(.:format) account#login
  3. signout GET|POST /logout(.:format) account#logout
  4. register GET|POST /account/register(.:format) account#register
  5. lost_password GET|POST /account/lost_password(.:format) account#lost_password
  6. account_activate GET /account/activate(.:format) account#activate
  7. activation_email GET /account/activation_email(.:format) account#activation_email
  8. preview_news GET|POST|PUT /news/preview(.:format) previews#news
  9. preview_new_issue GET|POST|PUT /issues/preview/new/:project_id(.:format) previews#issue
  10. preview_edit_issue GET|POST|PUT /issues/preview/edit/:id(.:format) previews#issue
  11. preview_issue GET|POST|PUT /issues/preview(.:format) previews#issue
  12. POST /projects/:id/wiki(.:format) wikis#edit
  13. GET|POST /projects/:id/wiki/destroy(.:format) wikis#destroy
  14. new_board_message GET|POST /boards/:board_id/topics/new(.:format) messages#new
  15. board_message GET /boards/:board_id/topics/:id(.:format) messages#show
  16. GET|POST /boards/:board_id/topics/quote/:id(.:format) messages#quote
  17. GET /boards/:board_id/topics/:id/edit(.:format) messages#edit
  18. preview_board_message POST /boards/:board_id/topics/preview(.:format) messages#preview
  19. POST /boards/:board_id/topics/:id/replies(.:format) messages#reply
  20. POST /boards/:board_id/topics/:id/edit(.:format) messages#edit
  21. POST /boards/:board_id/topics/:id/destroy(.:format) messages#destroy
  22. auto_complete_issues GET /issues/auto_complete(.:format) auto_completes#issues
  23. issues_context_menu GET|POST /issues/context_menu(.:format) context_menus#issues
  24. issue_changes GET /issues/changes(.:format) journals#index
  25. quoted_issue POST /issues/:id/quoted(.:format) journals#new {:id=>/\d+/}
  26. GET /journals/diff/:id(.:format) journals#diff {:id=>/\d+/}
  27. GET|POST /journals/edit/:id(.:format) journals#edit {:id=>/\d+/}
  28. project_gantt GET /projects/:project_id/issues/gantt(.:format) gantts#show
  29. issues_gantt GET /issues/gantt(.:format) gantts#show
  30. project_calendar GET /projects/:project_id/issues/calendar(.:format) calendars#show
  31. issues_calendar GET /issues/calendar(.:format) calendars#show
  32. project_issues_report GET /projects/:id/issues/report(.:format) reports#issue_report
  33. project_issues_report_details GET /projects/:id/issues/report/:detail(.:format) reports#issue_report_details
  34. my_account GET|POST /my/account(.:format) my#account
  35. my_account_destroy GET|POST /my/account/destroy(.:format) my#destroy
  36. my_page GET /my/page(.:format) my#page
  37. my GET /my(.:format) my#index
  38. my_reset_rss_key POST /my/reset_rss_key(.:format) my#reset_rss_key
  39. my_reset_api_key POST /my/reset_api_key(.:format) my#reset_api_key
  40. my_password GET|POST /my/password(.:format) my#password
  41. my_page_layout GET /my/page_layout(.:format) my#page_layout
  42. my_add_block POST /my/add_block(.:format) my#add_block
  43. my_remove_block POST /my/remove_block(.:format) my#remove_block
  44. my_order_blocks POST /my/order_blocks(.:format) my#order_blocks
  45. users GET /users(.:format) users#index
  46. POST /users(.:format) users#create
  47. new_user GET /users/new(.:format) users#new
  48. edit_user GET /users/:id/edit(.:format) users#edit
  49. user GET /users/:id(.:format) users#show
  50. PUT /users/:id(.:format) users#update
  51. DELETE /users/:id(.:format) users#destroy
  52. user_membership PUT /users/:id/memberships/:membership_id(.:format) users#edit_membership
  53. DELETE /users/:id/memberships/:membership_id(.:format) users#destroy_membership
  54. user_memberships POST /users/:id/memberships(.:format) users#edit_membership
  55. watch POST /watchers/watch(.:format) watchers#watch
  56. watchers_watch DELETE /watchers/watch(.:format) watchers#unwatch
  57. watchers_new GET /watchers/new(.:format) watchers#new
  58. watchers POST /watchers(.:format) watchers#create
  59. watchers_append POST /watchers/append(.:format) watchers#append
  60. DELETE /watchers(.:format) watchers#destroy
  61. watchers_autocomplete_for_user GET /watchers/autocomplete_for_user(.:format) watchers#autocomplete_for_user
  62. POST /issues/:object_id/watchers(.:format) watchers#create {:object_type=>"issue"}
  63. DELETE /issues/:object_id/watchers/:user_id(.:format) watchers#destroy {:object_type=>"issue"}
  64. settings_project GET /projects/:id/settings(/:tab)(.:format) projects#settings
  65. modules_project POST /projects/:id/modules(.:format) projects#modules
  66. archive_project POST /projects/:id/archive(.:format) projects#archive
  67. unarchive_project POST /projects/:id/unarchive(.:format) projects#unarchive
  68. close_project POST /projects/:id/close(.:format) projects#close
  69. reopen_project POST /projects/:id/reopen(.:format) projects#reopen
  70. copy_project GET|POST /projects/:id/copy(.:format) projects#copy
  71. autocomplete_project_memberships GET /projects/:project_id/memberships/autocomplete(.:format) members#autocomplete
  72. project_memberships GET /projects/:project_id/memberships(.:format) members#index
  73. POST /projects/:project_id/memberships(.:format) members#create
  74. new_project_membership GET /projects/:project_id/memberships/new(.:format) members#new
  75. membership GET /memberships/:id(.:format) members#show
  76. PUT /memberships/:id(.:format) members#update
  77. DELETE /memberships/:id(.:format) members#destroy
  78. project_enumerations PUT /projects/:project_id/enumerations(.:format) project_enumerations#update
  79. DELETE /projects/:project_id/enumerations(.:format) project_enumerations#destroy
  80. project_copy_issue GET /projects/:project_id/issues/:copy_from/copy(.:format) issues#new
  81. project_issues GET /projects/:project_id/issues(.:format) issues#index
  82. POST /projects/:project_id/issues(.:format) issues#create
  83. new_project_issue GET /projects/:project_id/issues/new(.:format) issues#new
  84. project_issue_form PUT|POST /projects/:project_id/issues/update_form(.:format) issues#update_form
  85. project_files GET /projects/:project_id/files(.:format) files#index
  86. POST /projects/:project_id/files(.:format) files#create
  87. new_project_file GET /projects/:project_id/files/new(.:format) files#new
  88. close_completed_project_versions PUT /projects/:project_id/versions/close_completed(.:format) versions#close_completed
  89. project_versions POST /projects/:project_id/versions(.:format) versions#create
  90. new_project_version GET /projects/:project_id/versions/new(.:format) versions#new
  91. GET /projects/:project_id/versions.:format versions#index
  92. project_roadmap GET /projects/:project_id/roadmap versions#index
  93. GET /projects/:project_id/versions(.:format) versions#index
  94. project_news_index GET /projects/:project_id/news(.:format) news#index
  95. POST /projects/:project_id/news(.:format) news#create
  96. new_project_news GET /projects/:project_id/news/new(.:format) news#new
  97. report_project_time_entries GET /projects/:project_id/time_entries/report(.:format) timelog#report
  98. project_time_entries GET /projects/:project_id/time_entries(.:format) timelog#index
  99. POST /projects/:project_id/time_entries(.:format) timelog#create
  100. new_project_time_entry GET /projects/:project_id/time_entries/new(.:format) timelog#new
  101. edit_project_time_entry GET /projects/:project_id/time_entries/:id/edit(.:format) timelog#edit
  102. project_time_entry GET /projects/:project_id/time_entries/:id(.:format) timelog#show
  103. PUT /projects/:project_id/time_entries/:id(.:format) timelog#update
  104. DELETE /projects/:project_id/time_entries/:id(.:format) timelog#destroy
  105. project_queries POST /projects/:project_id/queries(.:format) queries#create
  106. new_project_query GET /projects/:project_id/queries/new(.:format) queries#new
  107. project_issue_categories GET /projects/:project_id/issue_categories(.:format) issue_categories#index
  108. POST /projects/:project_id/issue_categories(.:format) issue_categories#create
  109. new_project_issue_category GET /projects/:project_id/issue_categories/new(.:format) issue_categories#new
  110. edit_issue_category GET /issue_categories/:id/edit(.:format) issue_categories#edit
  111. issue_category GET /issue_categories/:id(.:format) issue_categories#show
  112. PUT /issue_categories/:id(.:format) issue_categories#update
  113. DELETE /issue_categories/:id(.:format) issue_categories#destroy
  114. project_documents GET /projects/:project_id/documents(.:format) documents#index
  115. POST /projects/:project_id/documents(.:format) documents#create
  116. new_project_document GET /projects/:project_id/documents/new(.:format) documents#new
  117. project_boards GET /projects/:project_id/boards(.:format) boards#index
  118. POST /projects/:project_id/boards(.:format) boards#create
  119. new_project_board GET /projects/:project_id/boards/new(.:format) boards#new
  120. edit_project_board GET /projects/:project_id/boards/:id/edit(.:format) boards#edit
  121. project_board GET /projects/:project_id/boards/:id(.:format) boards#show
  122. PUT /projects/:project_id/boards/:id(.:format) boards#update
  123. DELETE /projects/:project_id/boards/:id(.:format) boards#destroy
  124. committers_repository GET|POST /repositories/:id/committers(.:format) repositories#committers
  125. project_repositories POST /projects/:project_id/repositories(.:format) repositories#create
  126. new_project_repository GET /projects/:project_id/repositories/new(.:format) repositories#new
  127. edit_repository GET /repositories/:id/edit(.:format) repositories#edit
  128. repository PUT /repositories/:id(.:format) repositories#update
  129. DELETE /repositories/:id(.:format) repositories#destroy
  130. project_wiki_index GET /projects/:project_id/wiki/index(.:format) wiki#index
  131. rename_project_wiki_page GET /projects/:project_id/wiki/:id/rename(.:format) wiki#rename
  132. POST /projects/:project_id/wiki/:id/rename(.:format) wiki#rename
  133. history_project_wiki_page GET /projects/:project_id/wiki/:id/history(.:format) wiki#history
  134. diff_project_wiki_page GET /projects/:project_id/wiki/:id/diff(.:format) wiki#diff
  135. preview_project_wiki_page POST|PUT /projects/:project_id/wiki/:id/preview(.:format) wiki#preview
  136. protect_project_wiki_page POST /projects/:project_id/wiki/:id/protect(.:format) wiki#protect
  137. add_attachment_project_wiki_page POST /projects/:project_id/wiki/:id/add_attachment(.:format) wiki#add_attachment
  138. export_project_wiki_page_index GET /projects/:project_id/wiki/export(.:format) wiki#export
  139. date_index_project_wiki_page_index GET /projects/:project_id/wiki/date_index(.:format) wiki#date_index
  140. edit_project_wiki_page GET /projects/:project_id/wiki/:id/edit(.:format) wiki#edit
  141. project_wiki_page GET /projects/:project_id/wiki/:id(.:format) wiki#show
  142. PUT /projects/:project_id/wiki/:id(.:format) wiki#update
  143. DELETE /projects/:project_id/wiki/:id(.:format) wiki#destroy
  144. project_wiki GET /projects/:project_id/wiki(.:format) wiki#show
  145. GET /projects/:project_id/wiki/:id/:version(.:format) wiki#show {:version=>/\d+/}
  146. DELETE /projects/:project_id/wiki/:id/:version(.:format) wiki#destroy_version
  147. GET /projects/:project_id/wiki/:id/:version/annotate(.:format) wiki#annotate
  148. GET /projects/:project_id/wiki/:id/:version/diff(.:format) wiki#diff
  149. projects GET /projects(.:format) projects#index
  150. POST /projects(.:format) projects#create
  151. new_project GET /projects/new(.:format) projects#new
  152. edit_project GET /projects/:id/edit(.:format) projects#edit
  153. project GET /projects/:id(.:format) projects#show
  154. PUT /projects/:id(.:format) projects#update
  155. DELETE /projects/:id(.:format) projects#destroy
  156. bulk_edit_issues GET|POST /issues/bulk_edit(.:format) issues#bulk_edit
  157. bulk_update_issues POST /issues/bulk_update(.:format) issues#bulk_update
  158. report_issue_time_entries GET /issues/:issue_id/time_entries/report(.:format) timelog#report
  159. issue_time_entries GET /issues/:issue_id/time_entries(.:format) timelog#index
  160. POST /issues/:issue_id/time_entries(.:format) timelog#create
  161. new_issue_time_entry GET /issues/:issue_id/time_entries/new(.:format) timelog#new
  162. edit_issue_time_entry GET /issues/:issue_id/time_entries/:id/edit(.:format) timelog#edit
  163. issue_time_entry GET /issues/:issue_id/time_entries/:id(.:format) timelog#show
  164. PUT /issues/:issue_id/time_entries/:id(.:format) timelog#update
  165. DELETE /issues/:issue_id/time_entries/:id(.:format) timelog#destroy
  166. issue_relations GET /issues/:issue_id/relations(.:format) issue_relations#index
  167. POST /issues/:issue_id/relations(.:format) issue_relations#create
  168. relation GET /relations/:id(.:format) issue_relations#show
  169. DELETE /relations/:id(.:format) issue_relations#destroy
  170. issues GET /issues(.:format) issues#index
  171. POST /issues(.:format) issues#create
  172. new_issue GET /issues/new(.:format) issues#new
  173. edit_issue GET /issues/:id/edit(.:format) issues#edit
  174. issue GET /issues/:id(.:format) issues#show
  175. PUT /issues/:id(.:format) issues#update
  176. DELETE /issues/:id(.:format) issues#destroy
  177. DELETE /issues(.:format) issues#destroy
  178. queries GET /queries(.:format) queries#index
  179. POST /queries(.:format) queries#create
  180. new_query GET /queries/new(.:format) queries#new
  181. edit_query GET /queries/:id/edit(.:format) queries#edit
  182. query PUT /queries/:id(.:format) queries#update
  183. DELETE /queries/:id(.:format) queries#destroy
  184. news_index GET /news(.:format) news#index
  185. edit_news GET /news/:id/edit(.:format) news#edit
  186. news GET /news/:id(.:format) news#show
  187. PUT /news/:id(.:format) news#update
  188. DELETE /news/:id(.:format) news#destroy
  189. POST /news/:id/comments(.:format) comments#create
  190. DELETE /news/:id/comments/:comment_id(.:format) comments#destroy
  191. status_by_version POST /versions/:id/status_by(.:format) versions#status_by
  192. edit_version GET /versions/:id/edit(.:format) versions#edit
  193. version GET /versions/:id(.:format) versions#show
  194. PUT /versions/:id(.:format) versions#update
  195. DELETE /versions/:id(.:format) versions#destroy
  196. add_attachment_document POST /documents/:id/add_attachment(.:format) documents#add_attachment
  197. edit_document GET /documents/:id/edit(.:format) documents#edit
  198. document GET /documents/:id(.:format) documents#show
  199. PUT /documents/:id(.:format) documents#update
  200. DELETE /documents/:id(.:format) documents#destroy
  201. time_entries_context_menu GET|POST /time_entries/context_menu(.:format) context_menus#time_entries
  202. report_time_entries GET /time_entries/report(.:format) timelog#report
  203. bulk_edit_time_entries GET /time_entries/bulk_edit(.:format) timelog#bulk_edit
  204. bulk_update_time_entries POST /time_entries/bulk_update(.:format) timelog#bulk_update
  205. time_entries GET /time_entries(.:format) timelog#index
  206. POST /time_entries(.:format) timelog#create
  207. new_time_entry GET /time_entries/new(.:format) timelog#new
  208. edit_time_entry GET /time_entries/:id/edit(.:format) timelog#edit
  209. time_entry GET /time_entries/:id(.:format) timelog#show
  210. PUT /time_entries/:id(.:format) timelog#update
  211. DELETE /time_entries/:id(.:format) timelog#destroy {:id=>/\d+/}
  212. time_entries_destroy DELETE /time_entries/destroy(.:format) timelog#destroy
  213. GET /projects/:id/activity(.:format) activities#index
  214. GET /projects/:id/activity.:format activities#index
  215. activity GET /activity(.:format) activities#index
  216. GET /projects/:id/repository/:repository_id/statistics(.:format) repositories#stats
  217. GET /projects/:id/repository/:repository_id/graph(.:format) repositories#graph
  218. GET /projects/:id/repository/:repository_id/changes(/*path(.:ext))(.:format) repositories#changes
  219. GET /projects/:id/repository/:repository_id/revisions/:rev(.:format) repositories#revision
  220. GET /projects/:id/repository/:repository_id/revision(.:format) repositories#revision
  221. POST /projects/:id/repository/:repository_id/revisions/:rev/issues(.:format) repositories#add_related_issue
  222. DELETE /projects/:id/repository/:repository_id/revisions/:rev/issues/:issue_id(.:format) repositories#remove_related_issue
  223. GET /projects/:id/repository/:repository_id/revisions(.:format) repositories#revisions
  224. GET /projects/:id/repository/:repository_id/revisions/:rev/:action(/*path(.:ext)) repositories#(?-mix:(browse|show|entry|raw|annotate|diff)) {:rev=>/[a-z0-9\.\-_]+/}
  225. GET /projects/:id/repository/statistics(.:format) repositories#stats
  226. GET /projects/:id/repository/graph(.:format) repositories#graph
  227. GET /projects/:id/repository/changes(/*path(.:ext))(.:format) repositories#changes
  228. GET /projects/:id/repository/revisions(.:format) repositories#revisions
  229. GET /projects/:id/repository/revisions/:rev(.:format) repositories#revision
  230. GET /projects/:id/repository/revision(.:format) repositories#revision
  231. POST /projects/:id/repository/revisions/:rev/issues(.:format) repositories#add_related_issue
  232. DELETE /projects/:id/repository/revisions/:rev/issues/:issue_id(.:format) repositories#remove_related_issue
  233. GET /projects/:id/repository/revisions/:rev/:action(/*path(.:ext)) repositories#(?-mix:(browse|show|entry|raw|annotate|diff)) {:rev=>/[a-z0-9\.\-_]+/}
  234. GET /projects/:id/repository/:repository_id/:action(/*path(.:ext))(.:format) repositories#(?-mix:(browse|show|entry|raw|changes|annotate|diff))
  235. GET /projects/:id/repository/:action(/*path(.:ext))(.:format) repositories#(?-mix:(browse|show|entry|raw|changes|annotate|diff))
  236. GET /projects/:id/repository/:repository_id(.:format) repositories#show
  237. GET /projects/:id/repository(.:format) repositories#show
  238. named_attachment GET /attachments/:id/:filename(.:format) attachments#show {:id=>/\d+/, :filename=>/.*/}
  239. download_named_attachment GET /attachments/download/:id/:filename(.:format) attachments#download {:id=>/\d+/, :filename=>/.*/}
  240. GET /attachments/download/:id(.:format) attachments#download {:id=>/\d+/}
  241. thumbnail GET /attachments/thumbnail/:id(/:size)(.:format) attachments#thumbnail {:id=>/\d+/, :size=>/\d+/}
  242. attachment GET /attachments/:id(.:format) attachments#show
  243. DELETE /attachments/:id(.:format) attachments#destroy
  244. autocomplete_for_user_group GET /groups/:id/autocomplete_for_user(.:format) groups#autocomplete_for_user
  245. groups GET /groups(.:format) groups#index
  246. POST /groups(.:format) groups#create
  247. new_group GET /groups/new(.:format) groups#new
  248. edit_group GET /groups/:id/edit(.:format) groups#edit
  249. group GET /groups/:id(.:format) groups#show
  250. PUT /groups/:id(.:format) groups#update
  251. DELETE /groups/:id(.:format) groups#destroy
  252. group_users POST /groups/:id/users(.:format) groups#add_users {:id=>/\d+/}
  253. group_user DELETE /groups/:id/users/:user_id(.:format) groups#remove_user {:id=>/\d+/}
  254. POST /groups/destroy_membership/:id(.:format) groups#destroy_membership {:id=>/\d+/}
  255. POST /groups/edit_membership/:id(.:format) groups#edit_membership {:id=>/\d+/}
  256. fields_trackers GET|POST /trackers/fields(.:format) trackers#fields
  257. trackers GET /trackers(.:format) trackers#index
  258. POST /trackers(.:format) trackers#create
  259. new_tracker GET /trackers/new(.:format) trackers#new
  260. edit_tracker GET /trackers/:id/edit(.:format) trackers#edit
  261. tracker PUT /trackers/:id(.:format) trackers#update
  262. DELETE /trackers/:id(.:format) trackers#destroy
  263. update_issue_done_ratio_issue_statuses POST /issue_statuses/update_issue_done_ratio(.:format) issue_statuses#update_issue_done_ratio
  264. issue_statuses GET /issue_statuses(.:format) issue_statuses#index
  265. POST /issue_statuses(.:format) issue_statuses#create
  266. new_issue_status GET /issue_statuses/new(.:format) issue_statuses#new
  267. edit_issue_status GET /issue_statuses/:id/edit(.:format) issue_statuses#edit
  268. issue_status PUT /issue_statuses/:id(.:format) issue_statuses#update
  269. DELETE /issue_statuses/:id(.:format) issue_statuses#destroy
  270. custom_fields GET /custom_fields(.:format) custom_fields#index
  271. POST /custom_fields(.:format) custom_fields#create
  272. new_custom_field GET /custom_fields/new(.:format) custom_fields#new
  273. edit_custom_field GET /custom_fields/:id/edit(.:format) custom_fields#edit
  274. custom_field PUT /custom_fields/:id(.:format) custom_fields#update
  275. DELETE /custom_fields/:id(.:format) custom_fields#destroy
  276. permissions_roles GET|POST /roles/permissions(.:format) roles#permissions
  277. roles GET /roles(.:format) roles#index
  278. POST /roles(.:format) roles#create
  279. new_role GET /roles/new(.:format) roles#new
  280. edit_role GET /roles/:id/edit(.:format) roles#edit
  281. role GET /roles/:id(.:format) roles#show
  282. PUT /roles/:id(.:format) roles#update
  283. DELETE /roles/:id(.:format) roles#destroy
  284. enumerations GET /enumerations(.:format) enumerations#index
  285. POST /enumerations(.:format) enumerations#create
  286. new_enumeration GET /enumerations/new(.:format) enumerations#new
  287. edit_enumeration GET /enumerations/:id/edit(.:format) enumerations#edit
  288. enumeration PUT /enumerations/:id(.:format) enumerations#update
  289. DELETE /enumerations/:id(.:format) enumerations#destroy
  290. GET /enumerations/:type(.:format) enumerations#index
  291. GET /projects/:id/search(.:format) search#index
  292. search GET /search(.:format) search#index
  293. mail_handler POST /mail_handler(.:format) mail_handler#index
  294. admin GET /admin(.:format) admin#index
  295. admin_projects GET /admin/projects(.:format) admin#projects
  296. admin_plugins GET /admin/plugins(.:format) admin#plugins
  297. admin_info GET /admin/info(.:format) admin#info
  298. admin_test_email POST /admin/test_email(.:format) admin#test_email
  299. admin_default_configuration POST /admin/default_configuration(.:format) admin#default_configuration
  300. try_connection_auth_source GET /auth_sources/:id/test_connection(.:format) auth_sources#test_connection
  301. autocomplete_for_new_user_auth_sources GET /auth_sources/autocomplete_for_new_user(.:format) auth_sources#autocomplete_for_new_user
  302. auth_sources GET /auth_sources(.:format) auth_sources#index
  303. POST /auth_sources(.:format) auth_sources#create
  304. new_auth_source GET /auth_sources/new(.:format) auth_sources#new
  305. edit_auth_source GET /auth_sources/:id/edit(.:format) auth_sources#edit
  306. auth_source GET /auth_sources/:id(.:format) auth_sources#show
  307. PUT /auth_sources/:id(.:format) auth_sources#update
  308. DELETE /auth_sources/:id(.:format) auth_sources#destroy
  309. workflows GET /workflows(.:format) workflows#index
  310. workflows_edit GET|POST /workflows/edit(.:format) workflows#edit
  311. workflows_permissions GET|POST /workflows/permissions(.:format) workflows#permissions
  312. workflows_copy GET|POST /workflows/copy(.:format) workflows#copy
  313. settings GET /settings(.:format) settings#index
  314. settings_edit GET|POST /settings/edit(.:format) settings#edit
  315. plugin_settings GET|POST /settings/plugin/:id(.:format) settings#plugin
  316. sys_projects GET /sys/projects(.:format) sys#projects
  317. POST /sys/projects/:id/repository(.:format) sys#create_project_repository
  318. sys_fetch_changesets GET|POST /sys/fetch_changesets(.:format) sys#fetch_changesets
  319. uploads POST /uploads(.:format) attachments#upload
  320. GET /robots.txt(.:format) welcome#robots
  321. my_users GET /my/users(.:format) redmine_my_users#index
  322. example_exception GET /example_exception(.:format) example_exception#index
  323. project_bulk_update_upload POST /projects/:project_id/bulk_update/upload(.:format) bulk_update#upload
  324. project_bulk_update GET /projects/:project_id/bulk_update(.:format) bulk_update#index
  325. GET /projects(.:format) projects#index
  326. POST /projects(.:format) projects#create
  327. GET /projects/new(.:format) projects#new
  328. GET /projects/:id/edit(.:format) projects#edit
  329. GET /projects/:id(.:format) projects#show
  330. PUT /projects/:id(.:format) projects#update
  331. DELETE /projects/:id(.:format) projects#destroy
  332. GET /checklist/done/:checklist_item_id(.:format) issue_checklists#done
  333. GET /checklist/delete/:checklist_item_id(.:format) issue_checklists#delete
  334. import_custom_workflow POST /custom_workflows/import(.:format) custom_workflows#import
  335. custom_workflows GET /custom_workflows(.:format) custom_workflows#index
  336. POST /custom_workflows(.:format) custom_workflows#create
  337. new_custom_workflow GET /custom_workflows/new(.:format) custom_workflows#new
  338. edit_custom_workflow GET /custom_workflows/:id/edit(.:format) custom_workflows#edit
  339. custom_workflow GET /custom_workflows/:id(.:format) custom_workflows#show
  340. PUT /custom_workflows/:id(.:format) custom_workflows#update
  341. DELETE /custom_workflows/:id(.:format) custom_workflows#destroy
  342. POST /custom_workflows/:id(.:format) custom_workflows#update
  343. export_custom_workflow GET /custom_workflows/:id/export(.:format) custom_workflows#export
  344. custom_workflow_status POST /custom_workflows/:id/change_status(.:format) custom_workflows#change_status
  345. project_importer GET|POST /projects/:project_id/importer(.:format) importer#index
  346. project_importer_match GET|POST /projects/:project_id/importer/match(.:format) importer#match
  347. project_importer_result GET|POST /projects/:project_id/importer/result(.:format) importer#result
  348. GET /projects(.:format) projects#index
  349. POST /projects(.:format) projects#create
  350. GET /projects/new(.:format) projects#new
  351. GET /projects/:id/edit(.:format) projects#edit
  352. GET /projects/:id(.:format) projects#show
  353. PUT /projects/:id(.:format) projects#update
  354. DELETE /projects/:id(.:format) projects#destroy
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement