File: user.R

package info (click to toggle)
r-cran-rstudioapi 0.18.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 956 kB
  • sloc: makefile: 2
file content (24 lines) | stat: -rw-r--r-- 354 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#' Get User Identity
#' 
#' Returns the identity (displayed name) of the current user.
#' 
#' 
#' @export userIdentity
userIdentity <- function()
{
  callFun("userIdentity")
}



#' Get System Username
#' 
#' Returns the system username of the current user.
#' 
#' 
#' @export systemUsername
systemUsername <- function()
{
  callFun("systemUsername")
}