Extract User::acct_authority() method
This commit is contained in:
parent
10be055381
commit
b2e7664339
@ -832,11 +832,7 @@ impl User {
|
||||
|
||||
pub fn webfinger(&self, conn: &Connection) -> Result<Webfinger> {
|
||||
Ok(Webfinger {
|
||||
subject: format!(
|
||||
"acct:{}@{}",
|
||||
self.username,
|
||||
self.get_instance(conn)?.public_domain
|
||||
),
|
||||
subject: format!("acct:{}", self.acct_authority(conn)?),
|
||||
aliases: vec![self.ap_url.clone()],
|
||||
links: vec![
|
||||
Link {
|
||||
@ -874,6 +870,14 @@ impl User {
|
||||
})
|
||||
}
|
||||
|
||||
pub fn acct_authority(&self, conn: &Connection) -> Result<String> {
|
||||
Ok(format!(
|
||||
"{}@{}",
|
||||
self.username,
|
||||
self.get_instance(conn)?.public_domain
|
||||
))
|
||||
}
|
||||
|
||||
pub fn set_avatar(&self, conn: &Connection, id: i32) -> Result<()> {
|
||||
diesel::update(self)
|
||||
.set(users::avatar_id.eq(id))
|
||||
|
Loading…
Reference in New Issue
Block a user