]> source.dussan.org Git - redmine.git/commit
Workflow enhancement: editable and required fields configurable by role, tracker...
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 15 Jul 2012 14:12:17 +0000 (14:12 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 15 Jul 2012 14:12:17 +0000 (14:12 +0000)
commitd7b669e50b1c863b748231dc8fb66a692a33cdd1
tree59001bb1ae7cb03a9c8ce92e8ffb9b874c56f4af
parent54d55a360a21569b4a76070b52177e778d5521c7
Workflow enhancement: editable and required fields configurable by role, tracker and status (#703, #3521).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9977 e93f8b46-1217-0410-a6f0-8f06a7374b81
36 files changed:
app/controllers/issues_controller.rb
app/controllers/roles_controller.rb
app/controllers/trackers_controller.rb
app/controllers/workflows_controller.rb
app/helpers/custom_fields_helper.rb
app/helpers/workflows_helper.rb
app/models/issue.rb
app/models/issue_status.rb
app/models/role.rb
app/models/tracker.rb
app/models/workflow.rb [deleted file]
app/models/workflow_permission.rb [new file with mode: 0644]
app/models/workflow_rule.rb [new file with mode: 0644]
app/models/workflow_transition.rb [new file with mode: 0644]
app/views/issues/_attributes.html.erb
app/views/issues/_form.html.erb
app/views/issues/_form_custom_fields.html.erb
app/views/trackers/index.html.erb
app/views/workflows/edit.html.erb
app/views/workflows/permissions.html.erb [new file with mode: 0644]
config/routes.rb
db/migrate/20120714122000_add_workflows_type.rb [new file with mode: 0644]
db/migrate/20120714122100_update_workflows_to_sti.rb [new file with mode: 0644]
db/migrate/20120714122200_add_workflows_rule_fields.rb [new file with mode: 0644]
lib/redmine/default_data/loader.rb
public/stylesheets/application.css
test/fixtures/workflows.yml
test/functional/issues_controller_test.rb
test/functional/roles_controller_test.rb
test/functional/trackers_controller_test.rb
test/functional/workflows_controller_test.rb
test/unit/issue_status_test.rb
test/unit/issue_test.rb
test/unit/role_test.rb
test/unit/tracker_test.rb
test/unit/workflow_test.rb