GPVUser - AppGeo/GPV GitHub Wiki
This table assigns roles to users for all modes of authentication. When implementing database authentication, this table is the repository for user accounts. This table is not used in a public access (no authentication) instance of the GPV.
Columns
- UserName - The login name of the user (not null), depending on authentication mode:
- Windows Authentication - The Windows user name, including the domain if necessary
- Database Authentication - The name to be entered in the GPV login page.
- Certificate Authentication - Either the full Subject entry from the client certificate or, if CertificateUserField is provided in the Web.config file, the value of the specified field in the Subject entry.
- Password - For database authentication only, the user's password. May be entered as clear text or as a 40-character hexadecimal SHA1 hash.
- Role - The role for this user. If null, defaults to "private".
- DisplayName - The friendly name to display as the user in the markup panel. If null, defaults to UserName.
- Active - Specifies whether this user should be granted authenticated access, 1 for yes and 0 for no. If null, defaults to 0 (no).