2016-11-14 09:55:31 -05:00
|
|
|
scope(controller: :wikis) do
|
|
|
|
scope(path: 'wikis', as: :wikis) do
|
|
|
|
get :git_access
|
|
|
|
get :pages
|
2019-10-31 17:06:28 -04:00
|
|
|
get :new
|
|
|
|
get '/', to: redirect('%{namespace_id}/%{project_id}/wikis/home')
|
|
|
|
post '/', to: 'wikis#create'
|
2016-11-14 09:55:31 -05:00
|
|
|
end
|
2016-11-07 10:14:34 -05:00
|
|
|
|
2019-10-31 17:06:28 -04:00
|
|
|
scope(path: 'wikis/*id', as: :wiki, format: false) do
|
2016-11-14 09:55:31 -05:00
|
|
|
get :edit
|
|
|
|
get :history
|
|
|
|
post :preview_markdown
|
|
|
|
get '/', action: :show
|
|
|
|
put '/', action: :update
|
|
|
|
delete '/', action: :destroy
|
|
|
|
end
|
2016-11-07 10:14:34 -05:00
|
|
|
end
|