mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-06 00:23:11 +00:00
15 lines
233 B
Elixir
15 lines
233 B
Elixir
defmodule Pleroma.Web.OStatus do
|
|
alias Pleroma.Web
|
|
|
|
def feed_path(user) do
|
|
"#{user.ap_id}/feed.atom"
|
|
end
|
|
|
|
def pubsub_path(user) do
|
|
"#{Web.base_url}/push/hub/#{user.nickname}"
|
|
end
|
|
|
|
def user_path(user) do
|
|
end
|
|
end
|