-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Expand file tree
/
Copy pathroutes.rb
More file actions
94 lines (83 loc) · 3.07 KB
/
Copy pathroutes.rb
File metadata and controls
94 lines (83 loc) · 3.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# frozen_string_literal: true
#-- copyright
# OpenProject is an open source project management software.
# Copyright (C) the OpenProject GmbH
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License version 3.
#
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
# Copyright (C) 2006-2013 Jean-Philippe Lang
# Copyright (C) 2010-2013 the ChiliProject Team
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# See COPYRIGHT and LICENSE files for more details.
#++
Rails.application.routes.draw do
namespace :admin do
namespace :settings do
resource :internal_wiki_provider, controller: "/wikis/admin/internal_wiki_provider", only: %i[show update]
resources :wiki_providers, controller: "/wikis/admin/wiki_providers", except: [:show] do
member do
get :confirm_destroy
get :edit_general_info
delete :replace_oauth_application
end
resource :health_status_report, controller: "/wikis/admin/health_status", only: %i[show create] do
post :create_health_status_report
end
resource :oauth_client, controller: "/wikis/admin/oauth_clients", only: %i[new create] do
patch :update, on: :member
end
end
end
end
resources :projects, only: %i[] do
namespace :settings do
resource :wiki, controller: "/wikis/project_settings/wiki", only: %i[show create]
end
resources :work_packages, only: %i[] do
resources :wikis, only: %i[] do
collection do
resources :tab, only: %i[index], controller: "work_package_wikis_tab", as: "wikis_tab" do
get :inline_page_links, on: :collection
end
end
end
end
end
resources :relation_wiki_page_links, only: %i[create destroy], controller: "wikis/relation_page_links" do
collection do
get :link_existing_dialog
end
member do
get :confirm_delete_dialog
end
end
resource :wiki_page_link_macro, controller: "wikis/page_link_macro", only: [] do
get :load
get :existing_page_dialog
get :new_page_dialog
post :close_existing_page_dialog
post :close_new_page_dialog
end
resource :wiki_pages, controller: "wikis/pages", only: [] do
get :search
get :create_new_page_dialog
post :create_and_link
end
resources :wiki_pages, only: [:index], controller: "wikis/wiki_pages"
end