Want to add managers to particular user

Shalini Jain, modified 7 Years ago. New Member Posts: 6 Join Date: 11/16/17 Recent Posts

I have a requirement of attendance management system wherin i want to display all the employees of a particular manager but there is no such manager role or column in users table how can i achieve this

thumbnail
Mahammad Ashik A, modified 7 Years ago. Junior Member Posts: 81 Join Date: 7/17/17 Recent Posts

create custom role as "manager" in control panel .

Then add this condition in jsp.

List<Role> roles = themeDisplay.getUser().getRoles();
     for (Role role : roles) {
    if (role.getName().contains("Manager"){

 

}}