Added deprecated for user done

This commit is contained in:
William Mead 2024-03-14 09:29:51 +01:00
parent cad8f24322
commit 7629455b7d
2 changed files with 4 additions and 0 deletions

View File

@ -30,6 +30,9 @@ The following changes may create regressions for some external modules, but were
* The signature for all ->delete() method has been modified to match the modulebuilder template (so first paramis now always $user), except
the delete for thirdparty (still accept the id of thirdparty to delete as first parameter). Will probably be modified into another version.
* Route for API /thirdparties/gateways has been renamed into /thirdparties/accounts
* The $userdoneid in actioncomm class is deprecated. Please use $userownerid instead.
* The field fk_user_done in actioncomm table is deprecated. Please use fk_user_action instead.
* The AGENDA_ENABLE_DONEBY hidden option is deprecated.
***** ChangeLog for 19.0.1 compared to 19.0.0 *****

View File

@ -242,6 +242,7 @@ class ActionComm extends CommonObject
/**
* @var int Id of user that has done the event. Used only if AGENDA_ENABLE_DONEBY is set.
* @deprecated Use $userownerid instead
*/
public $userdoneid;