Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FIT-Connect-SDK - .NET
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
FIT-Connect
FIT-Connect-SDK - .NET
Commits
40df9752
Commit
40df9752
authored
2 years ago
by
Klaus Fischer
Browse files
Options
Downloads
Patches
Plain Diff
Updated urls, deleted dev-environment
parent
edd56eba
No related branches found
No related tags found
1 merge request
!55
Issue/944 urls
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
FitConnect/FitConnectEnvironment.cs
+2
-9
2 additions, 9 deletions
FitConnect/FitConnectEnvironment.cs
Tests/IntegrationTests/CertificateValidation.cs
+1
-1
1 addition, 1 deletion
Tests/IntegrationTests/CertificateValidation.cs
with
3 additions
and
10 deletions
FitConnect/FitConnectEnvironment.cs
+
2
−
9
View file @
40df9752
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"
);
...
...
This diff is collapsed.
Click to expand it.
Tests/IntegrationTests/CertificateValidation.cs
+
1
−
1
View file @
40df9752
...
...
@@ -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
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment