CUBA component that shows detailed information about user sessions. The main purpose for this application component is to make the work of customer support of your software a little bit easier. Especially when you work heavily with deep levels of security groups the existing access groups screen is not capable of showing what session attributes with what values are applied for a particular user. The same goes for effective constraints in the security group. It contains the following four parts:
- User information
- Applied session attributes
- Constraints
- Permissions
-
Add the following maven repository
https://dl.bintray.com/balvi/cuba-components
to the build.gradle of your CUBA application:buildscript {
//... repositories { // ... maven { url "https://dl.bintray.com/balvi/cuba-components" } } // ...
}
-
Select a version of the add-on which is compatible with the platform version used in your project:
Platform Version | Add-on Version |
---|---|
7.0.x | 0.8.x |
6.10.x | 0.7.x |
6.9.x | 0.6.x |
6.8.x | 0.5.x |
6.6.x | 0.3.x |
6.5.x | 0.2.x |
6.4.x | 0.1.x |
The latest version is: 0.8.1
Add custom application component to your project:
- Artifact group:
de.balvi.cuba.sessioninfo
- Artifact name:
sessioninfo-global
- Version: add-on version
The app components extends the Administration > User Sessions
screen so that for all currently active session, the detailed session information can be retrieved.
The user has the ability to display information about its current session via Help > Current User Session
.