Project

General

Profile

Redmine People Plugin Permission problem

Added by Python P over 8 years ago

I am using Redmine People plugin(CRM).In this users are able to edit thier own profile by default.But I do not want users to edit thier own profile.So In redmine_people/app/controllers/person_controller.rb , I have given the below code so thst only admin gets the edit option.

layout 'admin'
before_filter :require_admin, :except => [:index, :show]

After Doing this code change,users are not able to edit their profile since they get 403 "You are not authorized to access this page."
But I want some users to add new users in People plugin.So I used the permissions which are there in redmine people plugin and checked the checkbox to add,view etc.But still the users not able to view/add new users.
How to solve this please help