1
0
mirror of https://github.com/bitwarden/directory-connector synced 2025-12-19 01:33:16 +00:00

sync interval setting

This commit is contained in:
Kyle Spearrin
2017-05-16 17:32:14 -04:00
parent 23d3300c4f
commit 7189703841
3 changed files with 30 additions and 1 deletions

View File

@@ -33,6 +33,7 @@ namespace Bit.Core.Models
UserEmailSuffix = null;
break;
case DirectoryType.Other:
IntervalMinutes = 30;
break;
default:
break;
@@ -51,5 +52,6 @@ namespace Bit.Core.Models
public string UserEmailSuffix { get; set; } = "@companyname.com";
public string CreationDateAttribute { get; set; }
public string RevisionDateAttribute { get; set; }
public int IntervalMinutes { get; set; } = 5;
}
}