chore: cargo fmt
This commit is contained in:
parent
4a03a3be7c
commit
0665a456d2
|
|
@ -373,10 +373,13 @@ impl Client {
|
||||||
pub async fn invite(&self, email: &str) -> Result<(), AppResponseError> {
|
pub async fn invite(&self, email: &str) -> Result<(), AppResponseError> {
|
||||||
self
|
self
|
||||||
.gotrue_client
|
.gotrue_client
|
||||||
.magic_link(&MagicLinkParams {
|
.magic_link(
|
||||||
email: email.to_owned(),
|
&MagicLinkParams {
|
||||||
..Default::default()
|
email: email.to_owned(),
|
||||||
}, None)
|
..Default::default()
|
||||||
|
},
|
||||||
|
None,
|
||||||
|
)
|
||||||
.await?;
|
.await?;
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue