I realised while looking at invite creation that it'd be nice to have a golgi helper function for specifying the pub address data.
usekuska_ssb::api::dto::content::PubAddress;// publish a pub address message (in order to test accepting invite from other client)
letpub_address_msg=SsbMessageContent::Pub{address: Some(PubAddress{host: Some("glyph_pi.dyn.peachcloud.org".to_string()),port: 8009,key: id,}),};letpub_msg_ref=sbot_client.publish(pub_address_msg).await?;
Invite code in this case would look something like this:
I realised while looking at invite creation that it'd be nice to have a golgi helper function for specifying the pub address data.
```rust
use kuska_ssb::api::dto::content::PubAddress;
// publish a pub address message (in order to test accepting invite from other client)
let pub_address_msg = SsbMessageContent::Pub {
address: Some(PubAddress {
host: Some("glyph_pi.dyn.peachcloud.org".to_string()),
port: 8009,
key: id,
}),
};
let pub_msg_ref = sbot_client.publish(pub_address_msg).await?;
```
Invite code in this case would look something like this:
`net:glyph_pi.dyn.peachcloud.org:8009:@1vxS6DMi7z9uJIQG33W7mlsv21GZIbOpmWE1QEcn9oY=.ed25519~5hpbpHzzBKAOm8IpH9K5rDZBaMcN+ljDfJwKrRobimo=`
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
I realised while looking at invite creation that it'd be nice to have a golgi helper function for specifying the pub address data.
Invite code in this case would look something like this:
net:glyph_pi.dyn.peachcloud.org:8009:@1vxS6DMi7z9uJIQG33W7mlsv21GZIbOpmWE1QEcn9oY=.ed25519~5hpbpHzzBKAOm8IpH9K5rDZBaMcN+ljDfJwKrRobimo=