UserFrosting API, Database, widgets and server code all added

This commit is contained in:
2026-02-03 13:01:07 +00:00
parent ff52d48095
commit 771ea0b5f5
24 changed files with 1579 additions and 5 deletions

29
man/ufWrapApplication.Rd Normal file
View File

@@ -0,0 +1,29 @@
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/ufWrapApplication.R
\name{ufWrapApplication}
\alias{ufWrapApplication}
\title{Wraps an application with UserFrosting user & session authentication}
\usage{
ufWrapApplication(
app,
ufURI,
with_users = TRUE,
user_optional = FALSE,
app_name = NULL
)
}
\arguments{
\item{app}{The application to wrap}
\item{ufURI}{The UserFrosting API instance}
\item{with_users}{Wether to enable user authentication}
\item{user_optional}{Inidicates wether authenticated users are optional. If
FALSE then any un-authenticated user can still access the application}
\item{app_name}{The name of the application (used in the UFApi calls)}
}
\description{
Wraps an application with UserFrosting user & session authentication
}