diff options
author | Jacopo <beschi.jacopo@gmail.com> | 2017-01-29 10:44:30 +0100 |
---|---|---|
committer | Jacopo <beschi.jacopo@gmail.com> | 2017-03-16 07:15:00 +0100 |
commit | 5f9ace8eb1d71b35c92156177465b066ebbc4a3e (patch) | |
tree | 5af8e80ecace78f4d165cb470062e6a2cd53c853 /config/routes | |
parent | 5e05d6b8cf26c424378ef6091a4b38c2d424808e (diff) | |
download | gitlab-ce-5f9ace8eb1d71b35c92156177465b066ebbc4a3e.tar.gz |
Add 'Undo mark all as done' to Todos
Added the ability to 'Undo mark all as done' todos marked as complete with 'Mark all as done'
in the 'Todo' tab of the Todo dashboard.
The operation undos only the todo previously marked as done with the 'Mark al as done' button.
Diffstat (limited to 'config/routes')
-rw-r--r-- | config/routes/dashboard.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config/routes/dashboard.rb b/config/routes/dashboard.rb index adc3ad207cc..8e380a0b0ac 100644 --- a/config/routes/dashboard.rb +++ b/config/routes/dashboard.rb @@ -13,6 +13,7 @@ resource :dashboard, controller: 'dashboard', only: [] do resources :todos, only: [:index, :destroy] do collection do delete :destroy_all + patch :bulk_restore end member do patch :restore |