mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.4 KiB
39 lines
1.4 KiB
// ==========================================================================
|
|
// Squidex Headless CMS
|
|
// ==========================================================================
|
|
// Copyright (c) Squidex UG (haftungsbeschraenkt)
|
|
// All rights reserved. Licensed under the MIT license.
|
|
// ==========================================================================
|
|
|
|
using Squidex.ClientLibrary;
|
|
|
|
namespace TestSuite.Fixtures
|
|
{
|
|
public sealed class CloudFixture
|
|
{
|
|
public SquidexClientManager ClientManager { get; private set; }
|
|
|
|
public SquidexClientManager CDNClientManager { get; private set; }
|
|
|
|
public CloudFixture()
|
|
{
|
|
ClientManager = new SquidexClientManager(
|
|
new SquidexOptions
|
|
{
|
|
AppName = "squidex-website",
|
|
ClientId = "squidex-website:reader",
|
|
ClientSecret = "yy9x4dcxsnp1s34r2z19t88wedbzxn1tfq7uzmoxf60x"
|
|
});
|
|
|
|
CDNClientManager = new SquidexClientManager(
|
|
new SquidexOptions
|
|
{
|
|
AppName = "squidex-website",
|
|
AssetCDN = "https://assets.squidex.io",
|
|
ClientId = "squidex-website:reader",
|
|
ClientSecret = "yy9x4dcxsnp1s34r2z19t88wedbzxn1tfq7uzmoxf60x",
|
|
ContentCDN = "https://contents.squidex.io",
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|