Hash :
14df077d
Author :
Thomas de Grivel
Date :
2021-11-19T12:06:33
defmodule KmxgitWeb.LayoutView do
use KmxgitWeb, :view
alias Kmxgit.RepositoryManager.Repository
def flash_json(conn) do
{:ok, result} = Jason.encode(get_flash(conn))
%{"data-flash": result}
end
# Phoenix LiveDashboard is available only in development by default,
# so we instruct Elixir to not warn if the dashboard route is missing.
@compile {:no_warn_undefined, {Routes, :live_dashboard_path, 2}}
end