1
0
mirror of https://github.com/bitwarden/directory-connector synced 2025-12-14 15:23:16 +00:00

remove creation/revision date from entries

This commit is contained in:
Kyle Spearrin
2018-04-30 17:19:29 -04:00
parent 36101fd7dd
commit 1d723000a9
2 changed files with 0 additions and 10 deletions

View File

@@ -1,6 +1,4 @@
export abstract class Entry {
referenceId: string;
externalId: string;
creationDate: Date;
revisonDate: Date;
}

View File

@@ -107,10 +107,6 @@ export class LdapDirectoryService implements DirectoryService {
return null;
}
// TODO: dates
user.revisonDate = new Date();
user.creationDate = new Date();
return user;
}
@@ -177,10 +173,6 @@ export class LdapDirectoryService implements DirectoryService {
return null;
}
// TODO: dates
group.revisonDate = new Date();
group.creationDate = new Date();
const members = this.getAttrVals(item, this.syncConfig.memberAttribute);
if (members != null) {
members.forEach((memDn) => {