Skip to content

Commit 3a28f34

Browse files
author
Guillaume DUPE
committed
add sidekiq dependancy to GemFile, change deprecated method *_filter by *_action, it is the equivalent since Rails5.2
1 parent 6f2bd95 commit 3a28f34

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+5
-6663
lines changed

Gemfile

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
gem "sidekiq"
12
gem 'erubis', '~> 2.7'
23
gem "holidays", "~>1.0.3"
34
gem "icalendar"

app/controllers/rb_all_projects_controller.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
class RbAllProjectsController < ApplicationController
22
unloadable
33

4-
before_filter :authorize_global
4+
before_action :authorize_global
55

66
def statistics
77
backlogs_projects = RbCommonHelper.find_backlogs_enabled_active_projects

app/controllers/rb_calendars_controller.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ class RbCalendarsController < RbApplicationController
55

66
case Backlogs.platform
77
when :redmine
8-
before_filter :require_admin_or_api_request, :only => :ical
8+
before_action :require_admin_or_api_request, :only => :ical
99
accept_api_auth :ical
1010
when :chiliproject
1111
accept_key_auth :ical

features/.autotest

-19
This file was deleted.

features/burndown.feature

-208
This file was deleted.

features/cecilia_burndown.feature

-46
This file was deleted.

features/common.feature

-26
This file was deleted.

features/duplicate_story.feature

-43
This file was deleted.

0 commit comments

Comments
 (0)