diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2020-03-13 12:09:22 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2020-03-13 12:09:22 +0000 |
commit | 286fe61013674fe2d245ffc8d2233baf09923e70 (patch) | |
tree | 2037291f5863105e54e75be056b49f7d62007cae /config/routes | |
parent | 4cb5e5011abfe8d50ac3a7ebd0018c563c6d7af4 (diff) | |
download | gitlab-ce-286fe61013674fe2d245ffc8d2233baf09923e70.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'config/routes')
-rw-r--r-- | config/routes/project.rb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/config/routes/project.rb b/config/routes/project.rb index 23a13202cd7..c37b5528f71 100644 --- a/config/routes/project.rb +++ b/config/routes/project.rb @@ -295,6 +295,12 @@ constraints(::Constraints::ProjectUrlConstrainer.new) do draw :repository_scoped draw :repository draw :wiki + + namespace :import do + resource :jira, only: [:show], controller: :jira do + post :import + end + end end # End of the /-/ scope. |