raoul2000 / yii2-workflow

A simple workflow engine for Yii2
BSD 3-Clause "New" or "Revised" License
171 stars 48 forks source link

Different namespace and workflow history? #46

Closed vitovtnet closed 7 years ago

vitovtnet commented 7 years ago
  1. When I use another namespace

namespace backend\models

I get error. (Expected app\models on my PostWorkflow class)

  1. Can I see workflow history? When and who changed status?
raoul2000 commented 7 years ago
  1. To use your own namespace (and not rely on the default one) see this chapter from the doc.

  2. Workflow history is not a feature provided by yii2-workflow. However that is quite simple to implement by (for example) adding a event handler on the change status Event.

ciao