We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19503f0 commit 9fcdbadCopy full SHA for 9fcdbad
src/api/ing/create.rs
@@ -1,4 +1,4 @@
1
-use crate::api::ing::Ing;
+use crate::api::ing::{Ing, IngSendFrom};
2
use crate::infra::http::{unit_or_err, RequestBuilderExt};
3
use crate::openapi;
4
use anyhow::Result;
@@ -14,6 +14,7 @@ impl Ing {
14
let body = json!({
15
"content": content,
16
"isPrivate": false,
17
+ "clientType": IngSendFrom::Cli,
18
});
19
20
client.post(url).json(&body).pat_auth(&self.pat)
0 commit comments