Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add chat reply_deadline field #48

Merged
merged 2 commits into from
Aug 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions src/Bot/Model/Entity/Chat/Chat.php
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,14 @@ class Chat implements ModelInterface
*/
private $lastActivity;

/**
* @var \DateTime $replyDeadline
*
* @Type("DateTime<'Y-m-d\TH:i:sP'>")
* @Accessor(getter="getReplyDeadline",setter="setReplyDeadline")
*/
private $replyDeadline;

/**
* @return string|null
*/
Expand Down Expand Up @@ -288,4 +296,20 @@ public function setLastActivity(\DateTime $lastActivity)
{
$this->lastActivity = $lastActivity;
}

/**
* @return \DateTime
*/
public function getReplyDeadline(): ?\DateTime
{
return $this->replyDeadline;
}

/**
* @param \DateTime $replyDeadline
*/
public function setReplyDeadline(\DateTime $replyDeadline): void
{
$this->replyDeadline = $replyDeadline;
}
}
3 changes: 3 additions & 0 deletions tests/Resources/chats.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@
"author_id": 0,
"last_message": null,
"last_activity": "2019-06-11T17:36:20+03:00",
"reply_deadline": "2019-06-18T17:36:20Z",
"created_at": "2019-06-11T12:49:26.938879Z",
"updated_at": "2019-06-14T14:40:28.7111Z"
},
Expand Down Expand Up @@ -129,6 +130,7 @@
}
},
"last_activity": "2019-06-13T11:07:14+03:00",
"reply_deadline": "2019-06-20T11:07:14Z",
"created_at": "2019-06-11T07:34:16.082957Z",
"updated_at": "2019-06-16T08:10:28.657972Z"
},
Expand Down Expand Up @@ -201,6 +203,7 @@
}
},
"last_activity": "2019-06-13T11:07:14+03:00",
"reply_deadline":"2019-06-20T11:07:14Z",
"created_at": "2019-06-11T07:34:16Z",
"updated_at": "2019-06-16T08:10:28Z"
}
Expand Down
Loading