fix crud user
This commit is contained in:
@@ -65,7 +65,14 @@ public class LoginService implements BaseService<LoginRequest, LoginResponse> {
|
||||
.userId(userRoleView.getId())
|
||||
.username(userRoleView.getUsername())
|
||||
.nama(userRoleView.getNama())
|
||||
.roleId(userRoleView.getRoleId())
|
||||
.role(userRoleView.getRole())
|
||||
.instansiId(userRoleView.getInstansiId())
|
||||
.instansi(userRoleView.getInstansi())
|
||||
.bidangId(userRoleView.getBidangId())
|
||||
.bidang(userRoleView.getBidang())
|
||||
.jabatanId(userRoleView.getJabatanId())
|
||||
.jabatan(userRoleView.getJabatan())
|
||||
.accessMenu(new HashSet<>())
|
||||
.build();
|
||||
|
||||
|
@@ -72,7 +72,12 @@ public class TokenManagementService implements BaseService<RefreshTokenRequest,
|
||||
.userId(userRoleView.getId())
|
||||
.username(userRoleView.getUsername())
|
||||
.nama(userRoleView.getNama())
|
||||
.roleId(userRoleView.getRoleId())
|
||||
.role(userRoleView.getRole())
|
||||
.instansiId(userRoleView.getInstansiId())
|
||||
.instansi(userRoleView.getInstansi())
|
||||
.bidangId(userRoleView.getBidangId())
|
||||
.bidang(userRoleView.getBidang())
|
||||
.accessMenu(new HashSet<>())
|
||||
.build();
|
||||
|
||||
|
Reference in New Issue
Block a user