-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #75 from SimCorp/develop
Release 0.5.0
- Loading branch information
Showing
19 changed files
with
536 additions
and
227 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ node_modules | |
|
||
|
||
# local env files | ||
env | ||
.env | ||
.env.local | ||
.env.*.local | ||
|
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
using System.Collections.Generic; | ||
using backend.models; | ||
|
||
namespace backend.drawables | ||
{ | ||
public class GatewayLink : Link | ||
{ | ||
public List<string> errors { get; set; } | ||
public string errorsAsString { get; set; } | ||
|
||
public GatewayLink(string source, string target, bool ntv_error = false) : base(source, target, ntv_error) | ||
{ | ||
errors = new List<string>(); | ||
errorsAsString = source + " to/from " + target; | ||
} | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
using System.Collections.Generic; | ||
using backend.models; | ||
|
||
namespace backend.drawables | ||
{ | ||
public class LeafLink : Link | ||
{ | ||
public List<LeafNode> connections { get; set; } | ||
public LeafLink(string source, string target) : base(source, target) | ||
{ | ||
connections = new List<LeafNode>(); | ||
} | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,21 @@ | ||
using System.Collections.Generic; | ||
using System; | ||
|
||
namespace backend.drawables | ||
{ | ||
public class Link | ||
public class Link | ||
{ | ||
public string source { get; } | ||
public string target { get; } | ||
|
||
public bool ntv_error { get; set; } | ||
public List<string> errors { get; set; } | ||
public string errorsAsString { get; set; } | ||
|
||
|
||
|
||
public Link(string source, string target, bool ntv_error = false) | ||
{ | ||
this.source = source; | ||
this.target = target; | ||
this.ntv_error = ntv_error; | ||
errors = new List<string>(); | ||
errorsAsString = source + " to/from " + target; | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains 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
Oops, something went wrong.