raoul2000 / yii2-workflow

A simple workflow engine for Yii2

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Different namespace and workflow history?

vitovtnet opened this issue · comments

  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?
commented
  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