mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 20:47:54 +00:00
remove userId
This commit is contained in:
@@ -13,7 +13,6 @@ export class LoginUserRespose {
|
|||||||
FullName: string
|
FullName: string
|
||||||
RoleDescription: string
|
RoleDescription: string
|
||||||
RoleID: number
|
RoleID: number
|
||||||
UserName: string
|
|
||||||
Profile: any;
|
Profile: any;
|
||||||
UserPermissions: any;
|
UserPermissions: any;
|
||||||
}
|
}
|
||||||
@@ -34,7 +33,6 @@ export class UserSession {
|
|||||||
FullName: string
|
FullName: string
|
||||||
RoleDescription: string
|
RoleDescription: string
|
||||||
RoleID: number
|
RoleID: number
|
||||||
UserName: string
|
|
||||||
Password: string
|
Password: string
|
||||||
RochetChatUserId: string
|
RochetChatUserId: string
|
||||||
Profile: 'PR' | 'MDGPR' | 'Consultant' | 'SGGPR' | 'Unknown' ;
|
Profile: 'PR' | 'MDGPR' | 'Consultant' | 'SGGPR' | 'Unknown' ;
|
||||||
|
|||||||
@@ -38,7 +38,7 @@
|
|||||||
<div class="members" *ngIf="currentMembers">
|
<div class="members" *ngIf="currentMembers">
|
||||||
<ion-label class="members-label">Contactos selecção:</ion-label>
|
<ion-label class="members-label">Contactos selecção:</ion-label>
|
||||||
<ion-list class="members-list" *ngFor="let user of currentMembers">
|
<ion-list class="members-list" *ngFor="let user of currentMembers">
|
||||||
<div class="members-checkbox" [class.inactive]="SessionStore.user.UserName == user.username">
|
<div class="members-checkbox" [class.inactive]="SessionStore.user.UserId == user.username">
|
||||||
<ion-checkbox disabled checked color="primary"></ion-checkbox>
|
<ion-checkbox disabled checked color="primary"></ion-checkbox>
|
||||||
<p class="ma-0">{{user.wxFullName }}</p>
|
<p class="ma-0">{{user.wxFullName }}</p>
|
||||||
<!-- <ion-icon name="ellipse"></ion-icon> -->
|
<!-- <ion-icon name="ellipse"></ion-icon> -->
|
||||||
|
|||||||
@@ -34,7 +34,7 @@
|
|||||||
<div *ngIf="members">
|
<div *ngIf="members">
|
||||||
<ion-label class="members-label">Contactos selecção:</ion-label>
|
<ion-label class="members-label">Contactos selecção:</ion-label>
|
||||||
<div class="members-list" *ngFor="let user of members">
|
<div class="members-list" *ngFor="let user of members">
|
||||||
<ion-item-sliding [class.inactive]="sessionStore.user.UserName == user.username">
|
<ion-item-sliding [class.inactive]="sessionStore.user.UserId == user.username">
|
||||||
<ion-item lines="none" class="members-checkbox ion-no-border ion-no-padding">
|
<ion-item lines="none" class="members-checkbox ion-no-border ion-no-padding">
|
||||||
<ion-checkbox checked disabled color="primary"></ion-checkbox>
|
<ion-checkbox checked disabled color="primary"></ion-checkbox>
|
||||||
<p>{{user.name}}</p>
|
<p>{{user.name}}</p>
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
export let versionData = {
|
export let versionData = {
|
||||||
"shortSHA": "ecb2f6c08",
|
"shortSHA": "0889e8240",
|
||||||
"SHA": "ecb2f6c08ec1b5c587d400f3ba2c85e96c1ed243",
|
"SHA": "0889e824059f11f674538c5adccbcf4790693708",
|
||||||
"branch": "feature/login-v2",
|
"branch": "feature/login-v2",
|
||||||
"lastCommitAuthor": "'Peter Maquiran'",
|
"lastCommitAuthor": "'Peter Maquiran'",
|
||||||
"lastCommitTime": "'Wed Nov 6 08:24:37 2024 +0100'",
|
"lastCommitTime": "'Wed Nov 6 09:13:36 2024 +0100'",
|
||||||
"lastCommitMessage": "remove chat data and ownerCalendar",
|
"lastCommitMessage": "remove basic",
|
||||||
"lastCommitNumber": "6124",
|
"lastCommitNumber": "6125",
|
||||||
"changeStatus": "On branch feature/login-v2\nChanges to be committed:\n (use \"git restore --staged <file>...\" to unstage)\n\tmodified: gabinete-digital-fo.code-workspace\n\tmodified: src/app/app.module.ts\n\tmodified: src/app/core/user/use-case/user-login-use-case.service.ts\n\tmodified: src/app/models/user.model.ts\n\tmodified: src/app/module/user/data/datasource/user-remote-repository.service.ts\n\tmodified: src/app/module/user/domain/user.service.ts\n\tmodified: src/app/pages/login/login.module.ts\n\tmodified: src/app/pages/login/login.page.ts\n\tmodified: src/app/services/auth.service.ts\n\tmodified: src/app/services/monitoring/opentelemetry/opentelemetry.ts\n\tmodified: src/app/services/monitoring/opentelemetry/tracer.ts\n\tmodified: src/app/services/notification/notifications-ends-points.service.ts\n\tmodified: src/app/services/notification/notifications-trigger.service.ts\n\tmodified: src/app/services/notifications.service.ts\n\tmodified: version/git-version.ts",
|
"changeStatus": "On branch feature/login-v2\nChanges to be committed:\n (use \"git restore --staged <file>...\" to unstage)\n\tmodified: src/app/models/user.model.ts\n\tmodified: src/app/ui/chat/component/group-contacts/group-contacts.page.html\n\tmodified: src/app/ui/chat/modal/group-contacts/group-contacts.page.html",
|
||||||
"changeAuthor": "peter.maquiran"
|
"changeAuthor": "peter.maquiran"
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user