]> Untitled Git - lemmy.git/commitdiff
Revert apub endpoint url changes
authorFelix <me@nutomic.com>
Tue, 7 Apr 2020 11:21:30 +0000 (13:21 +0200)
committerFelix <me@nutomic.com>
Tue, 7 Apr 2020 11:21:30 +0000 (13:21 +0200)
server/src/apub/mod.rs

index f4afdb1f0b53e722c9522ce23d16ca23fad5c747..f2e5a56f3fe720808b7ee87f4f735c068493754f 100644 (file)
@@ -29,12 +29,15 @@ pub enum EndpointType {
   Comment,
 }
 
+// TODO: we will probably need to change apub endpoint urls so that html and activity+json content
+//       types are handled at the same endpoint, so that you can copy the url into mastodon search
+//       and have it fetch the object.
 pub fn make_apub_endpoint(endpoint_type: EndpointType, name: &str) -> Url {
   let point = match endpoint_type {
-    EndpointType::Community => "community",
-    EndpointType::User => "user",
-    EndpointType::Post => "post",
-    EndpointType::Comment => "comment",
+    EndpointType::Community => "c",
+    EndpointType::User => "u",
+    EndpointType::Post => "p",
+    EndpointType::Comment => todo!(),
   };
 
   Url::parse(&format!(