mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2025-02-02 08:12:20 +00:00
Extract User::acct_authority() method
This commit is contained in:
parent
10be055381
commit
b2e7664339
1 changed files with 9 additions and 5 deletions
|
@ -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 a new issue