restrictedFormat
enum restrictedFormat =
q{
static if (hasUDA!(%1$s.%2$s, HttpRestricted))
{
static if (hasUDA!(%1$s.%2$s, HttpDefault))
{
_restrictedActions.add("/");
}
else static if (hasUDA!(%1$s.%2$s, HttpAction))
{
_restrictedActions.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 restricted connections.