Skip to content

Commit c2a58ee

Browse files
authored
Merge pull request #1291 from Blazam-App/v1-Dev
Comment out field request code that is not ready yet
2 parents 80d7a43 + 0c0e754 commit c2a58ee

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

BLAZAM/BLAZAM.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<ImplicitUsings>enable</ImplicitUsings>
77
<ServerGarbageCollection>false</ServerGarbageCollection>
88
<AssemblyVersion>1.4.12</AssemblyVersion>
9-
<Version>2025.11.16.1727</Version>
9+
<Version>2025.11.18.1852</Version>
1010
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
1111
<RootNamespace>BLAZAM</RootNamespace>
1212
<GenerateDocumentationFile>True</GenerateDocumentationFile>

BLAZAMDatabase/Models/User/NotificationMessage.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,11 @@ public class NotificationMessage : AppDbSetBase, IEquatable<NotificationMessage?
6262
/// <summary>
6363
/// The custom field id being referenced
6464
/// </summary>
65-
public int? CustomFieldId { get; set; }
65+
//public int? CustomFieldId { get; set; }
6666
/// <summary>
6767
/// The field id being referenced
6868
/// </summary>
69-
public int? FieldId { get; set; }
69+
//public int? FieldId { get; set; }
7070

7171
/// <summary>
7272
/// True if the Id's match or the <see cref="Level"/>,

BLAZAMServices/Background/NotificationGenerationService.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -379,8 +379,8 @@ public void PackageRequest(IDirectoryEntryAdapter target, IActiveDirectoryField
379379
{
380380
notification = new NotificationMessage()
381381
{
382-
FieldId = (field as ActiveDirectoryField)?.Id,
383-
CustomFieldId = (field as CustomActiveDirectoryField)?.Id,
382+
//FieldId = (field as ActiveDirectoryField)?.Id,
383+
//CustomFieldId = (field as CustomActiveDirectoryField)?.Id,
384384
CreatorId = actor?.Preferences.Id,
385385
Level = NotificationLevel.Info,
386386
TargetDN = target.DN,

0 commit comments

Comments
 (0)