View Source Plausible.Verification.State (Plausible v0.0.1)

The struct and interface describing the state of the site verification process. Assigns are meant to be used to communicate between checks, while diagnostics are later on interpreted (translated into user-friendly messages and recommendations) via Plausible.Verification.Diagnostics module.

Summary

Types

@type t() :: %Plausible.Verification.State{
  assigns: term(),
  data_domain: term(),
  diagnostics: term(),
  report_to: term(),
  url: term()
}

Functions

Link to this function

put_diagnostics(state, diagnostics)

View Source