Add SoundCloud delete functionality and fixes; implement TaskManager to run background jobs
This commit is contained in:
parent
706d7db2b2
commit
3902c8c746
15 changed files with 373 additions and 127 deletions
|
@ -83,9 +83,20 @@ define('UI_BLOCK_SESSNAME', 'BLOCK');*/
|
|||
|
||||
|
||||
// Soundcloud contants
|
||||
define('SOUNDCLOUD_NOT_UPLOADED_YET' , -1);
|
||||
define('SOUNDCLOUD_PROGRESS' , -2);
|
||||
define('SOUNDCLOUD_ERROR' , -3);
|
||||
/**
|
||||
* @var string status string for pending Celery tasks
|
||||
*/
|
||||
define('CELERY_PENDING_STATUS', 'PENDING');
|
||||
|
||||
/**
|
||||
* @var string status string for successful Celery tasks
|
||||
*/
|
||||
define('CELERY_SUCCESS_STATUS', 'SUCCESS');
|
||||
|
||||
/**
|
||||
* @var string status string for failed Celery tasks
|
||||
*/
|
||||
define('CELERY_FAILED_STATUS', 'FAILED');
|
||||
|
||||
|
||||
//WHMCS integration
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue