This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
exports.handler = (event, context, callback) => { | |
const response = { | |
statusCode: 301, | |
headers: { | |
Location: 'https://google.com', | |
} | |
}; | |
return callback(null, response); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class AzureAdB2cIdentityProvider : IdentityProvidersProcessor | |
{ | |
public AzureAdB2cIdentityProvider(FederatedAuthenticationConfiguration federatedAuthenticationConfiguration, ICookieManager cookieManager, BaseSettings settings) : base(federatedAuthenticationConfiguration, cookieManager, settings) | |
{ | |
} | |
protected override string IdentityProviderName => "AzureAdB2cExtranet"; | |
protected override void ProcessCore(IdentityProvidersArgs args) | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
USE [database_name] -- replace with your Reporting DB name | |
GO | |
-- [Fact_MvTesting] contains aggregated number of visits, engagement value, bounces, etc. for each test variant | |
-- TestSetId is ID of test definition item and TestValues represent each of the test variants | |
SELECT * | |
FROM [dbo].[Fact_MvTesting] | |
WHERE TestSetId = 'DB071F98-C2CE-4DBB-8873-2E378F88CEB4' -- replace with your test ID | |