Federate display name and summary

Fixes #9
This commit is contained in:
Bat
2018-05-03 16:34:16 +01:00
parent 08a21c7a04
commit b844257e34
3 changed files with 22 additions and 2 deletions
+8
View File
@@ -97,6 +97,14 @@ impl Actor for Blog {
self.actor_id.to_string()
}
fn get_display_name(&self) -> String {
self.title.clone()
}
fn get_summary(&self) -> String {
self.summary.clone()
}
fn get_instance(&self, conn: &PgConnection) -> Instance {
Instance::get(conn, self.instance_id).unwrap()
}
+8
View File
@@ -232,6 +232,14 @@ impl Actor for User {
self.username.to_string()
}
fn get_display_name(&self) -> String {
self.display_name.clone()
}
fn get_summary(&self) -> String {
self.summary.clone()
}
fn get_instance(&self, conn: &PgConnection) -> Instance {
Instance::get(conn, self.instance_id).unwrap()
}