Current section

Files

Jump to
livebook lib livebook zta pass_through.ex
Raw

lib/livebook/zta/pass_through.ex

defmodule Livebook.ZTA.PassThrough do
@behaviour Livebook.ZTA
@impl true
def child_spec(_opts) do
%{id: __MODULE__, start: {Function, :identity, [:ignore]}}
end
@impl true
def authenticate(_name, conn, _opts) do
{conn, %{}}
end
end