everlabs / project_roles_listing

Redmine plugin to show users with specific role in project listing table
MIT License
3 stars 1 forks source link

Project Roles Listing

Project Roles Listing is a Redmine plugin that allows to select roles to be listed in admin/projects table. Table columns list out users with chosen role in each project and you can go to user profile by clicking its name.

Installation

  1. Copy your plugin directory into #{RAILS_ROOT}/plugins. If you are downloading the plugin directly from GitHub, you can do so by changing into your plugin directory and issuing a command like:
    $ git clone git@github.com:everlabs/project_roles_listing.git
  2. If the plugin requires a migration, run the following command in #{RAILS_ROOT} to upgrade your database (make a db backup before).
    $ bundle exec rake redmine:plugins:migrate RAILS_ENV=production
  3. Run bundle command to install plugin deface gem
    $ bundle install
  4. Run command to precompile plugin overrides for views:
    $ rake deface:precompile

    and remove duplicated overrides with:

    $ rake deface:clean                                   # Removes all precompiled override templates
  5. Restart Redmine