mirror of
https://github.com/jtomchak/akkoma.git
synced 2025-02-01 04:19:09 +01:00
14 lines
212 B
Elixir
14 lines
212 B
Elixir
defmodule Pleroma.Web.OStatus do
|
|
alias Pleroma.Web
|
|
|
|
def feed_path(user) do
|
|
"#{user.ap_id}/feed.atom"
|
|
end
|
|
|
|
def pubsub_path() do
|
|
"#{Web.base_url}/push/hub"
|
|
end
|
|
|
|
def user_path(user) do
|
|
end
|
|
end
|