secure_server: Secure your Shiny app's server

View source: R/secure_server.R

secure_serverR Documentation

Secure your Shiny app's server

Description

This function is used to secure your Shiny app's server function. Make sure to pass your Shiny app's server function as the first argument to secure_server() at the bottom of your Shiny app's server.R file.

Usage

secure_server(server, custom_sign_in_server = NULL, custom_admin_server = NULL)

Arguments

server

A Shiny server function (e.g function(input, output, session) {})

custom_sign_in_server

Either NULL, the default, or a Shiny server containing your custom sign in server logic.

custom_admin_server

Either NULL, the default, or a Shiny server function containing your custom admin server functionality.

Value

a Shiny server function.


polished documentation built on Feb. 16, 2023, 8:02 p.m.