mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-22 17:31:03 +01:00
14 lines
240 B
Go
14 lines
240 B
Go
package utils
|
|
|
|
import "github.com/crawlab-team/crawlab/core/constants"
|
|
|
|
func IsCancellable(status string) bool {
|
|
switch status {
|
|
case constants.TaskStatusPending,
|
|
constants.TaskStatusRunning:
|
|
return true
|
|
default:
|
|
return false
|
|
}
|
|
}
|