fixed blocking issues
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
package kanban
|
||||
|
||||
import "errors"
|
||||
|
||||
var (
|
||||
// ErrAccessDenied is returned when the resource exists but does not belong to the caller.
|
||||
ErrAccessDenied = errors.New("kanban: access denied")
|
||||
|
||||
// ErrWorkflowUnavailable is returned when GoRules is configured but cannot supply workflow data.
|
||||
ErrWorkflowUnavailable = errors.New("kanban: workflow rules unavailable")
|
||||
)
|
||||
Reference in New Issue
Block a user