- fix esclusione file temp da regexp
- fix gestione delete
- test update/approve da REST
This commit is contained in:
Samuele Locatelli
2024-10-29 10:41:30 +01:00
parent 37e54bc587
commit f331967417
17 changed files with 182 additions and 123 deletions
+10
View File
@@ -93,6 +93,16 @@ namespace MP.FileData
/// </summary>
public List<string> Tag2Collect { get; set; } = new List<string>();
/// <summary>
/// Configurazione opzionale x escludere files da regexp su filename
/// </summary>
public bool ExclFileEnabled { get; set; } = false;
/// <summary>
/// Pattern in formato RegExp x esclusione file da nome
/// </summary>
public string ExclFileRegExPattern { get; set; } = "";
#endregion Public Properties
}
}