what is system.user entity?

1
Can someone explain what is that entity used for, when, where etc? Thank’s!
asked
2 answers
1

Foremost, it holds the user account information, most importantly the username in attribute ‘name’ and the password. It is used for authenticating the user.
Second, it has the links to the user roles, which determine the access-rights that go with that user account.

answered
1

Mainly, storing users and their passwords, if you are creating any new users in your app, you will create an entity generalized from the user entity.

answered