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:
@@ -1,6 +1,4 @@
|
||||
export abstract class Entry {
|
||||
referenceId: string;
|
||||
externalId: string;
|
||||
creationDate: Date;
|
||||
revisonDate: Date;
|
||||
}
|
||||
|
||||
@@ -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) => {
|
||||
|
||||
Reference in New Issue
Block a user