Features:
- Custom workflow creation per project/tracker
- Step-by-step workflow definition
- Assignees per step (user, role group, department)
- Next/Previous step navigation
- Reject to first step
- Skip step (admin only)
- Step deadline settings
- Workflow dashboard
- Group member selection when proceeding
🤖 Generated with Claude Code
7 lines
239 B
Ruby
7 lines
239 B
Ruby
module WorkflowEngine
|
|
class Hooks < Redmine::Hook::ViewListener
|
|
# 이슈 상세 페이지 상단에 워크플로우 진행 상태 표시
|
|
render_on :view_issues_show_description_bottom, partial: 'issues/workflow_status'
|
|
end
|
|
end
|