'Enabled all the IIS settings but IIS still not showing on the taskbar
Solution 1:[1]
The property isNewUser is a boolean.
So change your if condition to:
if(user.additionalUserInfo.isNewUser) {
// it's a new user
} else {
// user already known
}
Also read: AdditionalUserInfo#isNewUser
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | gru |

