Skip to content

Commit

Permalink
Merge pull request #42 from B-urb/development
Browse files Browse the repository at this point in the history
  • Loading branch information
B-urb authored May 12, 2024
2 parents 9d6c8a6 + cf02f09 commit 4240ae2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ use crate::paperless::{get_data_from_paperless, query_custom_fields, update_docu
#[derive(Serialize, Deserialize, Debug, Clone)]
struct Document {
id: u32,
correspondent: Option<String>,
correspondent: Option<u32>,
document_type: Option<String>,
storage_path: Option<String>,
title: String,
Expand All @@ -34,7 +34,7 @@ struct Document {
archive_serial_number: Option<String>,
original_file_name: String,
archived_file_name: String,
owner: u32,
owner: Option<u32>,
notes: Vec<String>,
tags: Vec<u32>,
user_can_change: bool,
Expand Down

0 comments on commit 4240ae2

Please sign in to comment.