redmine-workflow-engine/lib/workflow_engine/hooks.rb
ioresponse e67fb92189 Initial commit: Redmine Workflow Engine Plugin
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
2025-12-23 00:16:43 +09:00

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