-
Notifications
You must be signed in to change notification settings - Fork 13
feat: DCP issuance flow with request way #395
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
thackerronak
wants to merge
30
commits into
eclipse-tractusx:main
Choose a base branch
from
Cofinity-X:feat/CS-3566-dcp-integration
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from 11 commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
788bd0d
feat: integration of holder request and requested cred status check i…
thackerronak 0b858ad
feat: new endpoint path added
thackerronak 65cc838
feat: unit test cases added for request cred
thackerronak aad3436
feat: unit test cases added for check credential status
thackerronak 343bb4f
feat: auto approval flow added
thackerronak 30d9acf
test: dcp issuance flow unit cases added
thackerronak 3772f3a
fix: expiration date check updated
thackerronak 50cdfef
fix: successful check updated
thackerronak 24b5de4
fix: env added
thackerronak dd776b3
fix: byow flow
thackerronak 43f00f2
fix: callback url issue
thackerronak d7625ac
feat: added documentation and fixed some warnings
thackerronak 1fb4d51
feat: integration of holder request and requested cred status check i…
thackerronak 363007f
feat: new endpoint path added
thackerronak ffa8181
feat: unit test cases added for request cred
thackerronak c326fa8
feat: unit test cases added for check credential status
thackerronak 1233de3
feat: auto approval flow added
thackerronak 899f438
test: dcp issuance flow unit cases added
thackerronak 858ea14
fix: expiration date check updated
thackerronak e1c3e6a
fix: successful check updated
thackerronak 8cd2e03
fix: env added
thackerronak 61c2bd4
fix: byow flow
thackerronak 2e6b402
fix: callback url issue
thackerronak 358174d
feat: added documentation and fixed some warnings
thackerronak c95ef37
Merge branch 'feat/CS-3566-dcp-integration' of github.com:Cofinity-X/…
thackerronak afb74ac
feat: added env configuration
thackerronak 7ba7365
fix: helm docs
nitin-vavdiya 41926b6
fix: variable name
nitin-vavdiya 47b9806
fix: error message container added
thackerronak 8156d92
fix: removed unused imports
thackerronak File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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
61 changes: 61 additions & 0 deletions
61
src/database/SsiCredentialIssuer.Entities/AuditEntities/AuditCompanySsiDetail20240618.cs
This file contains hidden or 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,61 @@ | ||
/******************************************************************************** | ||
* Copyright (c) 2025 Cofinity-X GmbH | ||
nitin-vavdiya marked this conversation as resolved.
Show resolved
Hide resolved
|
||
* Copyright (c) 2025 Contributors to the Eclipse Foundation | ||
* | ||
* See the NOTICE file(s) distributed with this work for additional | ||
* information regarding copyright ownership. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Apache License, Version 2.0 which is available at | ||
* https://www.apache.org/licenses/LICENSE-2.0. | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
* License for the specific language governing permissions and limitations | ||
* under the License. | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
********************************************************************************/ | ||
|
||
using Org.Eclipse.TractusX.SsiCredentialIssuer.Entities.Auditing; | ||
using Org.Eclipse.TractusX.SsiCredentialIssuer.Entities.Auditing.Enums; | ||
using Org.Eclipse.TractusX.SsiCredentialIssuer.Entities.Enums; | ||
using System.ComponentModel.DataAnnotations; | ||
|
||
namespace Org.Eclipse.TractusX.SsiCredentialIssuer.Entities.AuditEntities; | ||
|
||
public class AuditCompanySsiDetail20240618 : IAuditEntityV2 | ||
{ | ||
/// <inheritdoc /> | ||
[Key] | ||
public Guid AuditV2Id { get; set; } | ||
|
||
public Guid Id { get; set; } | ||
public string Bpnl { get; set; } = null!; | ||
public string IssuerBpn { get; set; } = null!; | ||
public VerifiedCredentialTypeId VerifiedCredentialTypeId { get; set; } | ||
public CompanySsiDetailStatusId CompanySsiDetailStatusId { get; set; } | ||
public DateTimeOffset DateCreated { get; private set; } | ||
public string CreatorUserId { get; set; } = null!; | ||
public DateTimeOffset? ExpiryDate { get; set; } | ||
public Guid? VerifiedCredentialExternalTypeDetailVersionId { get; set; } | ||
|
||
public ExpiryCheckTypeId? ExpiryCheckTypeId { get; set; } | ||
public Guid? ProcessId { get; set; } | ||
public Guid? ExternalCredentialId { get; set; } | ||
public string? Credential { get; set; } | ||
public DateTimeOffset? DateLastChanged { get; set; } | ||
public string? LastEditorId { get; set; } | ||
public Guid? CredentialRequestId { get; set; } | ||
public string? CredentialRequestStatus { get; set; } | ||
|
||
/// <inheritdoc /> | ||
public string? AuditV2LastEditorId { get; set; } | ||
|
||
/// <inheritdoc /> | ||
public AuditOperationId AuditV2OperationId { get; set; } | ||
|
||
/// <inheritdoc /> | ||
public DateTimeOffset AuditV2DateLastChanged { get; set; } | ||
} |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.