Skip to content

Commit

Permalink
Supporting tif and PDF extentions
Browse files Browse the repository at this point in the history
  • Loading branch information
harini-venkataraman committed Jul 16, 2024
1 parent cf3c480 commit 7206712
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/workflow_manager/endpoint/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@ class FileType:


class FilePattern:
PDF_DOCUMENTS = ["*.pdf"]
PDF_DOCUMENTS = ["*.pdf", "*.PDF"]
TEXT_DOCUMENTS = ["*.txt"]
IMAGES = ["*.jpg", "*.jpeg", "*.png", "*.gif", "*.bmp"]
IMAGES = ["*.jpg", "*.jpeg", "*.png", "*.gif", "*.bmp", "*.tif"]


class SourceConstant:
Expand Down

0 comments on commit 7206712

Please sign in to comment.