Replaced all EnvelopeGenerator.GeneratorAPI namespaces with EnvelopeGenerator.API across controllers, models, extensions, middleware, and annotation-related files. Updated using/import statements and namespace declarations accordingly. Added wwwroot folder to project file. Minor code adjustments made for consistency. This unifies API naming for improved clarity and maintainability.
29 lines
946 B
C#
29 lines
946 B
C#
namespace EnvelopeGenerator.API.Models;
|
|
|
|
/// <summary>
|
|
/// Represents the keys and default values used for authentication token handling
|
|
/// within the Envelope Generator API.
|
|
/// </summary>
|
|
public class AuthTokenKeys
|
|
{
|
|
/// <summary>
|
|
/// Gets the name of the cookie used to store the authentication token.
|
|
/// </summary>
|
|
public string Cookie { get; init; } = "AuthToken";
|
|
|
|
/// <summary>
|
|
/// Gets the name of the query string parameter used to pass the authentication token.
|
|
/// </summary>
|
|
public string QueryString { get; init; } = "AuthToken";
|
|
|
|
/// <summary>
|
|
/// Gets the expected issuer value for the authentication token.
|
|
/// </summary>
|
|
public string Issuer { get; init; } = "auth.digitaldata.works";
|
|
|
|
/// <summary>
|
|
/// Gets the expected audience value for the authentication token.
|
|
/// </summary>
|
|
public string Audience { get; init; } = "sign-flow-gen.digitaldata.works";
|
|
}
|