Skip to content
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

fix: feature digital credentials #2329

Closed
wants to merge 45 commits into from
Closed
Changes from all commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
58e63e2
feat: devcontainer configuraton for vscode
amanji Sep 7, 2023
107604e
feat: hard code digital business card schema
amanji Sep 7, 2023
3793db1
feat: hard code digital business card schema
amanji Sep 7, 2023
d0c51ce
feat: issue credentials through Traction tenant
amanji Sep 11, 2023
7b88982
refactor: app initialization workflow
amanji Sep 12, 2023
ad0fa01
feat: use out-of-band invitation for connecting
amanji Sep 20, 2023
2e75d5f
feat: use v2.0 for issuing credential
amanji Sep 21, 2023
79a2631
feat: web socket implmentation with flask-socketio
amanji Oct 11, 2023
fc8edc4
feat: db migration script to enable revocation
amanji Oct 16, 2023
4fe8406
feat: revocation endpoint
amanji Oct 18, 2023
aec27f2
feat: replace endpoints
amanji Oct 19, 2023
99e54fe
chore: fix linting errors
amanji Oct 19, 2023
88e3ccc
chore: update requirements
amanji Oct 19, 2023
fd96a6e
chore: update tests
amanji Oct 25, 2023
e397e04
feat: traction token exchanger
amanji Oct 26, 2023
1f2fe2b
chore: update workflow variables
amanji Oct 26, 2023
4090b35
chore: update workflow variables
amanji Oct 26, 2023
7f1f546
refactor: ws cors setting is a config option
amanji Oct 26, 2023
a259818
chore: fix linting errors
amanji Oct 26, 2023
080825f
refactor: clean up init in digital credential service
amanji Oct 27, 2023
6beb1b1
18284: digital credentials (#2260)
amanji Oct 27, 2023
87d0854
feat: endpoints to reset credential offers
amanji Oct 28, 2023
4042676
Merge remote-tracking branch 'upstream/feature-digital-credentials' i…
amanji Oct 30, 2023
26a01e7
feat: credential id lookup table
amanji Oct 30, 2023
32a7d7a
feat: add business roles
amanji Oct 30, 2023
205dd68
18284 Add pre-fork server hook to gunicorn config (#2285)
argush3 Oct 30, 2023
c55cebc
chore: fix tests and linting
amanji Oct 30, 2023
8ad8cb9
chore: fix tests
amanji Oct 31, 2023
65a9a4d
18284 feat: digital credentials (#2281)
amanji Oct 31, 2023
2fc5cb3
Merge remote-tracking branch 'upstream/feature-digital-credentials' i…
amanji Oct 31, 2023
d368673
refactor: remove records from Traction on deletion
amanji Nov 1, 2023
0b3b60b
Revert "feat: web socket implmentation with flask-socketio"
amanji Nov 1, 2023
9763a17
fix: port so it doesnt overlap with airplay server on OSX
amanji Nov 1, 2023
633e3d9
Revert "fix: port so it doesnt overlap with airplay server on OSX"
amanji Nov 1, 2023
2976d11
feat: digital credentials (#2287)
amanji Nov 1, 2023
b22e419
Merge remote-tracking branch 'upstream/feature-digital-credentials' i…
amanji Nov 2, 2023
fc6c34a
Merge branch 'feature-digital-credentials'
amanji Nov 3, 2023
40f3af2
Merge remote-tracking branch 'upstream/main'
amanji Nov 3, 2023
18d2aaa
Merge remote-tracking branch 'upstream/main'
amanji Nov 16, 2023
cf606ec
fix: 404 errors from Traction when revoking or replacing a credential
amanji Nov 17, 2023
764bdf1
Merge remote-tracking branch 'upstream/main'
amanji Nov 20, 2023
74c4dab
Merge branch 'main' into fix/feature-digital-credentials
amanji Nov 20, 2023
b79f19b
Merge remote-tracking branch 'upstream/main'
amanji Nov 24, 2023
692d1ad
Merge branch 'main' into fix/feature-digital-credentials
amanji Nov 24, 2023
4890c32
fix: DBC queue message types
amanji Nov 24, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ async def process_digital_credential(dc_msg: dict, flask_app: Flask):
f'bc.registry.business.{FilingCore.FilingTypes.CHANGEOFREGISTRATION.value}',
f'bc.registry.business.{FilingCore.FilingTypes.DISSOLUTION.value}',
f'bc.registry.business.{FilingCore.FilingTypes.PUTBACKON.value}',
'bc.registry.admin.bn',
'bc.registry.admin.manual'
'bc.registry.business.bn',
'bc.registry.business.manual'
Comment on lines +72 to +73
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I agree with bc.registry.business.bn.

I think we should replace bc.registry.admin.manual with bc.registry.admin.revoke. My thought is we should still distinguish admin based operations. We'll need to update the cli to support this in some way.

]:
return None

Expand Down
Loading