Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

FacebookAuthenticationDefaults.cs

namespace Nop.Plugin.ExternalAuth.Facebook;

/// 
/// Represents plugin constants
/// 
public class FacebookAuthenticationDefaults
{
    /// 
    /// Gets a plugin system name
    /// 
    public static string SystemName => "ExternalAuth.Facebook";

    /// 
    /// Gets a name of the route to the data deletion callback
    /// 
    public static string DataDeletionCallbackRoute => "Plugin.ExternalAuth.Facebook.DataDeletionCallback";

    /// 
    /// Gets a name of the route to the data deletion status check
    /// 
    public static string DataDeletionStatusCheckRoute => "Plugin.ExternalAuth.Facebook.DataDeletionStatusCheck";

    /// 
    /// Gets a name of error callback method
    /// 
    public static string ErrorCallback => "ErrorCallback";
}