mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-10 03:17:51 +00:00
6cb40bee26
Closes #612 Co-authored-by: tusooa <tusooa@kazv.moe> Reviewed-on: https://akkoma.dev/AkkomaGang/akkoma/pulls/626 Co-authored-by: FloatingGhost <hannah@coffee-and-dreams.uk> Co-committed-by: FloatingGhost <hannah@coffee-and-dreams.uk>
23 lines
547 B
Elixir
23 lines
547 B
Elixir
# Pleroma: A lightweight social networking server
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
defmodule Pleroma.Web.Metadata.Providers.Feed do
|
|
alias Pleroma.Web.Metadata.Providers.Provider
|
|
|
|
use Pleroma.Web, :verified_routes
|
|
|
|
@behaviour Provider
|
|
|
|
@impl Provider
|
|
def build_tags(%{user: user}) do
|
|
[
|
|
{:link,
|
|
[
|
|
rel: "alternate",
|
|
type: "application/atom+xml",
|
|
href: ~p[/users/#{user.nickname}/feed.atom]
|
|
], []}
|
|
]
|
|
end
|
|
end
|