Skip to content
Snippets Groups Projects
Commit 40df9752 authored by Klaus Fischer's avatar Klaus Fischer
Browse files

Updated urls, deleted dev-environment

parent edd56eba
No related branches found
No related tags found
1 merge request!55Issue/944 urls
namespace FitConnect;
public class FitConnectEnvironment {
public static readonly FitConnectEnvironment Develop = new(
"https://auth-dev.fit-connect.fitko.dev/token",
new[] { "https://submission-api-dev.fit-connect.fitko.dev" },
string.Empty, // "https://routing-api-testing.fit-connect.fitko.dev", // Dev does not have a routing API
"https://portal.auth-dev.fit-connect.fitko.dev"
) { VerifiedCertificatesAreMandatory = false };
public static readonly FitConnectEnvironment Testing = new(
"https://auth-testing.fit-connect.fitko.dev/token",
new[] { "https://submission-api-testing.fit-connect.fitko.dev" },
......@@ -17,8 +10,8 @@ public class FitConnectEnvironment {
public static readonly FitConnectEnvironment Staging = new(
"https://auth-refz.fit-connect.fitko.net/token",
new[] { "submission-api-refz.fit-connect.niedersachsen.de" },
string.Empty, // "https://routing-api-testing.fit-connect.fitko.dev", // Stage does not have a routing API
new[] { "https://submission-api-refz.fit-connect.niedersachsen.de" },
"https://routing-api-prod.fit-connect.fitko.net",
"https://portal.auth-refz.fit-connect.fitko.net"
);
......
......@@ -43,7 +43,7 @@ public class CertificateValidation {
[Test]
[Ignore("No credentials for dev environment")]
public void CheckCertificateInEnvironment_Dev() {
var environment = FitConnectEnvironment.Develop;
var environment = FitConnectEnvironment.Testing;
var sender = ClientFactory.GetSenderClient(environment, _settings.SenderClientId,
_settings.SenderClientSecret,
_logger);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment