Skip to content

Commit a474686

Browse files
authored
Merge pull request #801 from GridProtectionAlliance/ClaimCheck
Claim check
2 parents 213ca1d + 7b9add0 commit a474686

2 files changed

Lines changed: 8 additions & 1 deletion

File tree

Source/Applications/SystemCenter/Controllers/OpenXDA/XDAAPICredentialRetriever.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323

2424
using System;
2525
using System.ComponentModel;
26+
using System.Security.Claims;
2627
using GSF.Configuration;
2728
using openXDA.APIAuthentication;
2829
using SystemCenter.Model;
@@ -54,5 +55,11 @@ public bool TryRefreshSettings()
5455
Host = config.Host;
5556
return true;
5657
}
58+
59+
public bool TryRetrieveCustomer(ClaimsPrincipal principal, out string customerKey)
60+
{
61+
customerKey = null;
62+
return true;
63+
}
5764
}
5865
}

0 commit comments

Comments
 (0)