diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2024-04-25 17:41:52 +0200 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2024-04-25 17:41:52 +0200 |
commit | 975c0b735be0808883116616d934ee257a24fb08 (patch) | |
tree | d71dd46bb034674978cb204964f1cfa13dd5d5f1 /cli/src/api/client.rs | |
parent | b7ff847c3c44df876fcc21e946ffff1eb781a4d9 (diff) | |
download | faktura-975c0b735be0808883116616d934ee257a24fb08.tar.gz faktura-975c0b735be0808883116616d934ee257a24fb08.tar.bz2 faktura-975c0b735be0808883116616d934ee257a24fb08.zip |
cli: Add command to edit clients.
Not entirely happy with this one. Specially the patch method of the
Connection struct. While the other method take (or return) an object
that can be serialized to json, the patch method takes a string slice
directly, and passing it to the API.
Diffstat (limited to 'cli/src/api/client.rs')
-rw-r--r-- | cli/src/api/client.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cli/src/api/client.rs b/cli/src/api/client.rs index c77063b..df0ca96 100644 --- a/cli/src/api/client.rs +++ b/cli/src/api/client.rs @@ -28,6 +28,12 @@ impl Client { Ok(conn.get("clients")?) } + pub fn update(conn: Connection, client_id: u32, data: &str) -> Result<(), Box<dyn Error>> { + let resp = conn.patch(&format!("clients?id=eq.{}", client_id), data)?; + println!("{}", resp); + Ok(()) + } + pub fn save(&self, conn: Connection) -> Result<(), Box<dyn Error>> { // By default the `id` of a newly created client will be 0, // which will cause the API to add the client with id=0. This works once |