add open telemetry and refactor setup
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
namespace Kemkas.Web.Config;
|
||||
|
||||
public class ExternalAuthOptions
|
||||
{
|
||||
public string? ClientId { get; set; }
|
||||
|
||||
public string? ClientSecret { get; set; }
|
||||
|
||||
public bool IsValid() => ClientId != null && ClientSecret != null;
|
||||
}
|
||||
Reference in New Issue
Block a user