adding route for the getting of conversation details

This commit is contained in:
talksik
2022-03-19 10:39:19 -04:00
parent 3bf3c586d1
commit 50c37776fd
15 changed files with 205 additions and 9 deletions
@@ -0,0 +1,14 @@
import Content from "../models/content.model";
import Relationship from "../models/relationship.model";
import { User } from "@nirvana/core/models";
export default class GetConversationDetailsResponse {
// get the messages for this conversation for like last 7 days or just a count of them until we paginate?
constructor(
public contactUser: User,
isLiveOrPinned: boolean,
public ourRelationship?: Relationship,
public latestContent?: Content[]
) {}
}