2024-09-17 15:57:44 +03:00
|
|
|
URL = FunctionParameters["Bitrix24_URL"];
|
|
|
|
TaskID = FunctionParameters["Bitrix24_CommentsTaskID"];
|
|
|
|
CommentID = FunctionParameters["Bitrix24_HookCommentID"];
|
2024-08-13 14:04:54 +00:00
|
|
|
|
|
|
|
Text = "The task has been changed, do not split up";
|
|
|
|
|
|
|
|
Result = OPI_Bitrix24.UpdateTaskComment(URL, TaskID, CommentID, Text);
|
|
|
|
|
2024-09-17 15:57:44 +03:00
|
|
|
URL = FunctionParameters["Bitrix24_Domain"];
|
|
|
|
Token = FunctionParameters["Bitrix24_Token"];
|
|
|
|
CommentID = FunctionParameters["Bitrix24_CommentID"];
|
2024-08-13 14:04:54 +00:00
|
|
|
|
|
|
|
Text = "The task has been changed, let's split up";
|
|
|
|
|
|
|
|
Result = OPI_Bitrix24.UpdateTaskComment(URL, TaskID, CommentID, Text, Token);
|