-
-
Notifications
You must be signed in to change notification settings - Fork 3
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
Feat document type and storage path #298
base: master
Are you sure you want to change the base?
Feat document type and storage path #298
Conversation
Introduced classes, interfaces, and clients for handling `DocumentType` and `StoragePath` entities, including creation, retrieval, and deletion methods. Updated routing and serialization to accommodate these new API endpoints.
Introduced classes, interfaces, and clients for handling `DocumentType` and `StoragePath` entities, including creation, retrieval, and deletion methods. Updated routing and serialization to accommodate these new API endpoints.
… into feat-DocumentTypeAndStoragePath # Conflicts: # source/VMelnalksnis.PaperlessDotNet/StoragePaths/StoragePath.cs # source/VMelnalksnis.PaperlessDotNet/StoragePaths/StoragePathCreation.cs
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should add simple integration tests for document types and storage paths, where you create it, get it and delete it. Also check the ReSharper warnings added in the PR.
@@ -20,6 +22,8 @@ namespace VMelnalksnis.PaperlessDotNet.Serialization; | |||
[JsonSerializable(typeof(CorrespondentCreation))] | |||
[JsonSerializable(typeof(PaginatedList<Document>))] | |||
[JsonSerializable(typeof(Document))] | |||
[JsonSerializable(typeof(DocumentType))] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Need to also add DocumentTypeCreation
and StoragePathCreation
@@ -33,4 +33,8 @@ | |||
<None Include="..\..\README.md" Pack="true" PackagePath="\"/> | |||
</ItemGroup> | |||
|
|||
<ItemGroup> | |||
<Compile Remove="DocumentTypes\MatchingAlgorithm.cs" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This probably is not needed
New Feature: added support for DocumentType and StoragePath API functionality.