diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-08-26 16:30:03 +0300 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-08-26 16:30:03 +0300 |
commit | 17af835387c996f82b46f3bade67d513b4e40cc5 (patch) | |
tree | a98fc3a53601ce398df32a723947d27daff9e3ff /app/controllers/dashboard_controller.rb | |
parent | 4675ff46e8b1d354d86cdf80ac3bd4f60814dbe3 (diff) | |
download | gitlab-ce-17af835387c996f82b46f3bade67d513b4e40cc5.tar.gz |
Add event filter for group and project show pages
Diffstat (limited to 'app/controllers/dashboard_controller.rb')
-rw-r--r-- | app/controllers/dashboard_controller.rb | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/app/controllers/dashboard_controller.rb b/app/controllers/dashboard_controller.rb index f6620b25818..23da2c274dc 100644 --- a/app/controllers/dashboard_controller.rb +++ b/app/controllers/dashboard_controller.rb @@ -66,9 +66,4 @@ class DashboardController < ApplicationController def load_projects @projects = current_user.authorized_projects.sorted_by_activity end - - def event_filter - filters = cookies['event_filter'].split(',') if cookies['event_filter'].present? - @event_filter ||= EventFilter.new(filters) - end end |