pub async fn mint_code(
pool: &SqlitePool,
creator_did: &str,
ttl_secs: i64,
) -> Result<String>Expand description
Mint a new active invite code owned by creator_did, expiring ttl_secs
from now. Returns the generated code string. The browser/admin path leaves the
bot idempotency key (intended_did) NULL; see mint_code_for_did for the
bot path that records the target follower.