disableAuthFormat
enum disableAuthFormat =
q{
static if (hasUDA!(%1$s.%2$s, HttpDisableAuth))
{
static if (hasUDA!(%1$s.%2$s, HttpDefault))
{
_disabledAuth.add("/");
}
else static if (hasUDA!(%1$s.%2$s, HttpAction))
{
_disabledAuth.add(
(
action_%2$s.action && action_%2$s.action.strip().length ?
action_%2$s.action : "%2$s"
).firstToLower()
);
}
}
};
diamond controllers controller
classesmanifest constantsmixin templatesvariables
The format used for disabled authentication.