ADFSUser Active Directory user record
| 98 | |
| 99 | // ADFSUser Active Directory user record |
| 100 | type ADFSUser struct { |
| 101 | User |
| 102 | Sub string `json:"sub"` |
| 103 | UPN string `json:"upn"` |
| 104 | // UniqueName string `json:"unique_name"` |
| 105 | // PwdExp string `json:"pwd_exp"` |
| 106 | // SID string `json:"sid"` |
| 107 | // Groups string `json:"groups"` |
| 108 | // jwt.StandardClaims |
| 109 | } |
| 110 | |
| 111 | // PrepareUserData implement PersonalData interface |
| 112 | func (u *ADFSUser) PrepareUserData() { |
nothing calls this directly
no outgoing calls
no test coverage detected