This commit is contained in:
Peter Maquiran
2024-08-13 10:52:35 +01:00
parent 5b31a186c2
commit 251f533a68
53 changed files with 985 additions and 453 deletions
@@ -31,4 +31,10 @@ export class MessageRemoteDataSourceService {
return await this.httpService.get(`${this.baseUrl}/Room/${id}/Messages`);
}
@APIReturn(MessageOutPutDTOSchema, 'get/Messages/attachment')
async getAttachment(id: string): DataSourceReturn<MessageOutPutDTO> {
return await this.httpService.get(`${this.baseUrl}/attachment/${id}`);
}
}