You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 1, 2018. It is now read-only.
Redmine::Plugin.register :redmine_projects_approval do
name 'Redmine Projects Approval plugin'
author 'David Fuentes Baldomir'
description 'This plugin adds a mandatory approval step after all projects creation. Admins will have to approve each and every single project before they can be seen by any user.'
version '0.0.2'
end
# Approval behaviour is added to all projects.
Project.class_eval { include ActiveRecord::ProjectApproval }
# Creation behaviour is modified on Projects Controller. User will be redirected to 'index' action upon creation and the
# notice message will be updated to reflect the need of approval.
ProjectsController.class_eval do
after_filter(:only => [ :add, :create ]) do |controller|