Skip to content
This repository has been archived by the owner on Aug 16, 2024. It is now read-only.

Commit

Permalink
chore: Change upload location for message files (#83)
Browse files Browse the repository at this point in the history
  • Loading branch information
wadedvsa authored Mar 6, 2024
1 parent 09119e7 commit 3e433f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions module/Olcs/src/Controller/ConversationsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ public function processFileUpload($file)
{
$dtoData = [
'category' => Category::CATEGORY_LICENSING,
'subCategory' => Category::DOC_SUB_CATEGORY_MESSAGING,
'subCategory' => Category::DOC_SUB_CATEGORY_OTHER_DOCUMENTS,
'description' => $file['name'],
'isExternal' => true,
'messagingConversation' => $this->params()->fromRoute('conversationId'),
Expand All @@ -275,7 +275,7 @@ public function getUploadedFiles()
{
$params = [
'category' => Category::CATEGORY_LICENSING,
'subCategory' => Category::DOC_SUB_CATEGORY_MESSAGING,
'subCategory' => Category::DOC_SUB_CATEGORY_OTHER_DOCUMENTS,
'correlationId' => $this->getRequest()->getPost('correlationId'),
];

Expand Down

0 comments on commit 3e433f3

Please sign in to comment.