2.9 KiB
Users
Roles
There are multiple pre-defined roles in Kimai, which define the ACLs/permissions.
| Role name | extends | Description |
|---|---|---|
| ROLE_CUSTOMER | - | Currently not used, reserved for future features |
| ROLE_USER | ROLE_CUSTOMER | Normal user that wants to track working times |
| ROLE_TEAMLEAD | ROLE_USER | This role manages teams of ROLE_USER (this feature is not yet implemented, but planned for the future) and has further permissions on invoices |
| ROLE_ADMIN | ROLE_TEAMLEAD | Admins can do almost everything in Kimai, except some user specific tasks |
| ROLE_SUPER_ADMIN | ROLE_ADMIN | Evey Super-Admin can do anything Kimai |
Permissions
The permission system is configurable through a configuration file. You can find further information in the permissions chapter.
Login
- User can login with username or email
- If you activate the
Remember meoption, you can use use the most common functions within the next days without a new login
Remember me login
If you have chosen to login with the Remember me option, your login will be extended to one week (default value).
After coming back and being remembered you have access to all the following features:
- view your own timesheet
- start and stop new records
- edit existing records
If you are an administrator, you will see all your allowed options in the menu, but will be redirected to the login form when you try to access them. This is a security feature to prevent abuse in case you forgot to logout in public environments.
Read the configurations chapter if you want to change the value.
User registration
User registration with instant approval is activated by default, so users can register and will be able to login and start time-tracking instantly.
Read the configurations chapter if you want to disable the registration or enable email verification.
Password reset
The reset password function is enabled by default, but you need to activate email support if you want to use it.
If you want to deactivate this feature you have to change the following configs:
- in
config/packages/admin_lte.yamlremove the route aliasadmin_lte.routes.adminlte_password_reset(this will remove the link from the login form) - in
config/routes.yamlremove the blockfos_user_resetting(this will deactivate the functionality)
If you want to configure the behaviour (like the allowed time between multiple retries) then configure the settings:
- in
config/packages/fos_user.yamlthe key belowfos_user.registration.resetting(see documentation) - the values
retry_ttlandtoken_ttlare configured in seconds (7220 = 2 hours)
Read the configurations chapter if you want to reload the changed configuration files.