diff options
-rw-r--r-- | app/controllers/projects_controller.rb | 3 | ||||
-rw-r--r-- | config/routes/project.rb | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/app/controllers/projects_controller.rb b/app/controllers/projects_controller.rb index 6f609348402..a2f1b27d0ec 100644 --- a/app/controllers/projects_controller.rb +++ b/app/controllers/projects_controller.rb @@ -175,6 +175,9 @@ class ProjectsController < Projects::ApplicationController ) end + def reset_cache + end + def export @project.add_export_job(current_user: current_user) diff --git a/config/routes/project.rb b/config/routes/project.rb index 239b5480321..d79c6e141c8 100644 --- a/config/routes/project.rb +++ b/config/routes/project.rb @@ -436,6 +436,7 @@ constraints(ProjectUrlConstrainer.new) do get :download_export get :activity get :refs + get :reset_cache put :new_issuable_address end end |