|
1 | 1 | # Edit Custom Fields plugin for Redmine
|
2 | 2 |
|
3 |
| -Redmine plugin to allow users editing custom fields for their project. |
| 3 | +This is a Redmine plugin to enable users editing issue custom fields for their project. |
| 4 | + |
| 5 | +By default, Redmine provides the mechanism of creating custom fields to extend the |
| 6 | +semantics of certain entities, e.g. issues or projects. The properties of these Custom |
| 7 | +Fields can only be edited by a Redmine administrator making them often useless in |
| 8 | +projects where a manager or another designated member has to be able to amend these |
| 9 | +semantic fields. |
| 10 | + |
| 11 | +This plugins enables users with the appropriate permissions to edit the custom fields |
| 12 | +attached to issues within the current project. |
| 13 | + |
| 14 | +## Features |
| 15 | + |
| 16 | +* Allows editing of all issue custom fields for a project. |
| 17 | +* Provides a new permission for user roles. |
| 18 | +* Provides a new module permission for projects. |
| 19 | + |
| 20 | +## Installation |
| 21 | + |
| 22 | +The installation does not require a database migration. Just clone the Git repository to your `plugins` folder and restart the Redmine application. |
| 23 | + |
| 24 | + cd redmine/plugins |
| 25 | + git clone https://github.com/fathomssen/redmine_edit_custom_fields.git |
| 26 | + |
| 27 | +## Configuration |
| 28 | + |
| 29 | +After installing the plugin, you have to perform some configuration to enable this plugin for users and projects. |
| 30 | + |
| 31 | +1. In the Administration area, open the "Roles and permissions" tab. |
| 32 | + 1. Either choose an existing role or create a new one. |
| 33 | + 2. In the Permissions area, check "Edit custom fields". |
| 34 | + 3. Click on the Save button. |
| 35 | + 4. Now, this user role is allowed to edit custom fields. |
| 36 | +2. In the Settings tab of a project, open the Modules tab. |
| 37 | + 1. Check "Edit custom fields". |
| 38 | + 2. Click on the Save button. |
| 39 | + 3. Now, a new tab "Custom fields" will have appeared. |
| 40 | + |
| 41 | +## Todo |
| 42 | + |
| 43 | +* Add a field in the custom fields configuration to make only certain custom fields user-editable. |
| 44 | +* Add a select box to choose which custom field to edit. |
0 commit comments