From ba65df0ece8cee6167d2526a157c817638827d0d Mon Sep 17 00:00:00 2001 From: Alexander Meindl Date: Mon, 16 Jul 2018 13:37:23 +0200 Subject: [PATCH] Fix project patch --- lib/redmine_messenger/patches/projects_helper_patch.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/redmine_messenger/patches/projects_helper_patch.rb b/lib/redmine_messenger/patches/projects_helper_patch.rb index deff6aa..37aa407 100644 --- a/lib/redmine_messenger/patches/projects_helper_patch.rb +++ b/lib/redmine_messenger/patches/projects_helper_patch.rb @@ -4,8 +4,8 @@ module RedmineMessenger def self.included(base) base.send(:include, InstanceMethods) base.class_eval do - alias_method :project_settings_tabs_without_additionals, :project_settings_tabs - alias_method :project_settings_tabs, :project_settings_tabs_with_additionals + alias_method :project_settings_tabs_without_messenger, :project_settings_tabs + alias_method :project_settings_tabs, :project_settings_tabs_with_messenger end end