OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/lib/global_roles/users_helper_patch.rb

28 lines
622 B

require_dependency 'users_helper'
module GlobalRoles
module UsersHelperPatch
def self.included(base) # :nodoc:
base.send(:include, InstanceMethods)
base.class_eval do
unloadable
alias_method_chain :user_settings_tabs, :global_roles
end
end
module InstanceMethods
def user_settings_tabs_with_global_roles
tabs = user_settings_tabs_without_global_roles
tabs << {:name => 'global_roles', :partial => 'users/global_roles', :label => "global_roles"}
tabs
end
end
end
end
UsersHelper.send(:include, GlobalRoles::UsersHelperPatch)