File size: 286 Bytes
88211d3 | 1 2 3 4 5 6 7 8 9 10 11 | defmodule PlausibleWeb.Plugins.API.Views.Capabilities do
@moduledoc """
View for rendering Capabilities on the Plugins API
"""
use PlausibleWeb, :plugins_api_view
def render("index.json", %{capabilities: capabilities}) when is_map(capabilities) do
capabilities
end
end
|