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 {
|
export abstract class Entry {
|
||||||
referenceId: string;
|
referenceId: string;
|
||||||
externalId: string;
|
externalId: string;
|
||||||
creationDate: Date;
|
|
||||||
revisonDate: Date;
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -107,10 +107,6 @@ export class LdapDirectoryService implements DirectoryService {
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: dates
|
|
||||||
user.revisonDate = new Date();
|
|
||||||
user.creationDate = new Date();
|
|
||||||
|
|
||||||
return user;
|
return user;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -177,10 +173,6 @@ export class LdapDirectoryService implements DirectoryService {
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: dates
|
|
||||||
group.revisonDate = new Date();
|
|
||||||
group.creationDate = new Date();
|
|
||||||
|
|
||||||
const members = this.getAttrVals(item, this.syncConfig.memberAttribute);
|
const members = this.getAttrVals(item, this.syncConfig.memberAttribute);
|
||||||
if (members != null) {
|
if (members != null) {
|
||||||
members.forEach((memDn) => {
|
members.forEach((memDn) => {
|
||||||
|
|||||||
Reference in New Issue
Block a user