2019-10-07 12:20:41 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 06:49:20 +00:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2019-10-07 12:20:41 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.Web.Metadata.Providers.Feed do
|
|
|
|
alias Pleroma.Web.Metadata.Providers.Provider
|
2023-08-15 10:22:18 +00:00
|
|
|
|
|
|
|
use Pleroma.Web, :verified_routes
|
2019-10-07 12:20:41 +00:00
|
|
|
|
|
|
|
@behaviour Provider
|
|
|
|
|
|
|
|
@impl Provider
|
|
|
|
def build_tags(%{user: user}) do
|
2020-09-07 12:06:06 +00:00
|
|
|
[
|
|
|
|
{:link,
|
|
|
|
[
|
|
|
|
rel: "alternate",
|
|
|
|
type: "application/atom+xml",
|
2023-08-15 10:22:18 +00:00
|
|
|
href: ~p[/users/#{user.nickname}/feed.atom]
|
2020-09-07 12:06:06 +00:00
|
|
|
], []}
|
|
|
|
]
|
2019-10-07 12:20:41 +00:00
|
|
|
end
|
|
|
|
end
|