-
Notifications
You must be signed in to change notification settings - Fork 1
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 #25 from bsandmann/dev
Dev
- Loading branch information
Showing
22 changed files
with
2,019 additions
and
307 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 |
---|---|---|
|
@@ -5,5 +5,6 @@ public enum ETriggerType | |
HttpRequest, | ||
RecurringTimer, | ||
WalletInteraction, | ||
ManualTrigger | ||
ManualTrigger, | ||
Form | ||
} |
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,5 +4,6 @@ public enum ParameterType | |
{ | ||
String, | ||
Number, | ||
Boolean | ||
Boolean, | ||
Date | ||
} |
2 changes: 1 addition & 1 deletion
2
Blocktrust.CredentialWorkflow.Core/Domain/ProcessFlow/Triggers/TriggerInput.cs
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
12 changes: 12 additions & 0 deletions
12
Blocktrust.CredentialWorkflow.Core/Domain/ProcessFlow/Triggers/TriggerInputForm.cs
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,12 @@ | ||
// namespace Blocktrust.CredentialWorkflow.Core.Domain.ProcessFlow.Triggers; | ||
// | ||
// public class TriggerInputForm : TriggerInput | ||
// { | ||
// public TriggerInputForm() | ||
// { | ||
// Id = Guid.NewGuid(); | ||
// Parameters = new Dictionary<string, ParameterDefinition>(); | ||
// } | ||
// | ||
// public Dictionary<string, ParameterDefinition> Parameters { get; set; } | ||
// } |
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
4 changes: 1 addition & 3 deletions
4
Blocktrust.CredentialWorkflow.Core/Domain/ProcessFlow/WorkflowContext.cs
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
23 changes: 11 additions & 12 deletions
23
Blocktrust.CredentialWorkflow.Core/Entities/Identity/ApplicationUser.cs
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,14 +1,13 @@ | ||
namespace Blocktrust.CredentialWorkflow.Core.Entities.Identity | ||
{ | ||
using Microsoft.AspNetCore.Identity; | ||
using Tenant; | ||
namespace Blocktrust.CredentialWorkflow.Core.Entities.Identity; | ||
|
||
// Add profile data for application users by adding properties to the ApplicationUser class | ||
public class ApplicationUser : IdentityUser | ||
{ | ||
[PersonalData] public string? SomeOtherData { get; set; } | ||
using Microsoft.AspNetCore.Identity; | ||
using Tenant; | ||
|
||
public Guid? TenantEntityId { get; set; } | ||
public TenantEntity? TenantEntity { get; set; } = null!; | ||
} | ||
} | ||
// Add profile data for application users by adding properties to the ApplicationUser class | ||
public class ApplicationUser : IdentityUser | ||
{ | ||
[PersonalData] public string? SomeOtherData { get; set; } | ||
|
||
public Guid? TenantEntityId { get; set; } | ||
public TenantEntity? TenantEntity { get; set; } = null!; | ||
} |
Oops, something went wrong.