fix the /embed endpoint
ci/woodpecker/pr/woodpecker Pipeline is pending Details

This commit is contained in:
Miki Hau 2023-05-31 23:42:08 +00:00
parent 1ae89bddcd
commit 593ddbd796
4 changed files with 3 additions and 3 deletions

View File

@ -25,7 +25,7 @@ defmodule Pleroma.Constants do
const(static_only_files, const(static_only_files,
do: do:
~w(index.html robots.txt static static-fe finmoji emoji packs sounds images instance sw.js sw-pleroma.js favicon.png schemas doc embed.js embed.css) ~w(index.html robots.txt static static-fe finmoji emoji packs sounds images instance embed sw.js sw-pleroma.js favicon.png schemas doc)
) )
const(status_updatable_fields, const(status_updatable_fields,

View File

@ -6,10 +6,10 @@
<title><%= Pleroma.Config.get([:instance, :name]) %></title> <title><%= Pleroma.Config.get([:instance, :name]) %></title>
<meta content='noindex' name='robots'> <meta content='noindex' name='robots'>
<%= Phoenix.HTML.raw(assigns[:meta] || "") %> <%= Phoenix.HTML.raw(assigns[:meta] || "") %>
<link rel="stylesheet" href="/embed.css"> <link rel="stylesheet" href="/embed/embed.css">
<base target="_parent"> <base target="_parent">
</head> </head>
<body> <body>
<%= render @view_module, @view_template, assigns %> <%= render view_module(@conn), view_template(@conn), assigns %>
</body> </body>
</html> </html>