-
Hi all,
I want to exclude some users for notifications in Kimai (timesheet app). Therefore I need the User IDS in App/Entity/Users. How can I check these?
Thanks in advance!
@leggias this may be more a question of the upstream app, rather than the package. Not sure how kimai's LDAP integration identifies users by username. But if you need the kimai internal user id then this appears to be an auto increment integer, looking at the mysql table after login.
If you open the webterminal into the app, you can run the following:mysql --user=${CLOUDRON_MYSQL_USERNAME} --password=${CLOUDRON_MYSQL_PASSWORD} --host=${CLOUDRON_MYSQL_HOST} ${CLOUDRON_MYSQL_DATABASE} mysql> select * from kimai2_users;