Packages

Provides IndieWeb authentication (IndieAuth) support to Ueberauth.

Current section

Files

Jump to
ueberauth_indieauth lib ueberauth strategy errors.ex
Raw

lib/ueberauth/strategy/errors.ex

defmodule Ueberauth.Strategy.IndieAuth.Errors do
defmodule NoEndpointError do
defexception [:me, :type]
def message(exception) do
"No #{exception.type} endpoint could be found when checking #{exception.me}."
end
end
defmodule NoUserError do
defexception []
def message(_) do
"No user URL was provided."
end
end
end