├── .angulardoc.json ├── .circleci └── config.yml ├── .codecov.yml ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ └── build_release.yaml ├── .gitignore ├── .tgitconfig ├── CODE_OF_CONDUCT.md ├── COMPLIANCE.yaml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docker ├── PROXY.md ├── README.md ├── db │ ├── Dockerfile │ └── init-postgres-role.sh ├── docker-compose-debug.yml ├── docker-compose.yml ├── docker-mac.jpg ├── echo-service │ └── Dockerfile ├── manage ├── utils │ └── Dockerfile.fixpermissions └── vcr-agent │ ├── Dockerfile │ └── debug-logger.cfg ├── docs ├── CRArchitecture.png ├── CRArchitecture.puml ├── IndyCat-REST-Services.md ├── IndyCat-Search-Integration.md ├── README.md ├── Schema-changes.md ├── Subscription-Web-Hooks.md ├── assets │ ├── aries-vcr-architecture-diagram.png │ ├── aries-vcr-logo.jpg │ ├── attribute_key.png │ ├── attribute_label_value.png │ ├── default_cred_title.png │ ├── default_highlighted.png │ ├── highlighted_attributes.png │ ├── indy-catalyst-logo-bw.png │ ├── reason_to_demo.png │ ├── reason_to_demo_result.png │ ├── schema_label_cred_title.png │ ├── verifiable-credential-model-ForWhiteBK.png │ ├── verifiable-credential-model-ForWhiteBK.svg │ └── yaml_meta_insert.png ├── create-new-credential-registry.md ├── fix-corrupt-wallet-index.md └── healthcare-vc-examples │ ├── README.md │ ├── privacy_healthcare_credentials.md │ ├── schemas │ ├── MentalWellnessSessionCredential.json │ └── PractitionerAttestationCredential.json │ └── tests │ ├── package-lock.json │ ├── package.json │ ├── sample_MentalWellnessSessionCredential.json │ ├── sample_PractitionerAttestationCredential.json │ └── validate.js ├── echo-service ├── README.md ├── manage.py ├── requirements.txt ├── resthooks │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── run_docker.sh ├── start.sh └── tester │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── prettierrc.json └── server ├── README.md ├── db ├── README.md └── config │ └── postgresql-cfg │ ├── autovacuum.conf │ ├── dbconnections.conf │ └── logging.conf ├── message_families └── issuer_registration │ ├── indy_catalyst_issuer_registration │ ├── handlers │ │ ├── __init__.py │ │ └── registration_handler.py │ ├── manager.py │ ├── message_types.py │ ├── messages │ │ ├── __init__.py │ │ └── register.py │ ├── models │ │ └── issuer_registration_state.py │ └── routes.py │ ├── requirements.txt │ ├── setup.py │ └── version.py ├── setup.cfg ├── solr └── cores │ └── credential_registry │ └── conf │ ├── currency.xml │ ├── elevate.xml │ ├── lang │ ├── contractions_ca.txt │ ├── contractions_fr.txt │ ├── contractions_ga.txt │ ├── contractions_it.txt │ ├── hyphenations_ga.txt │ ├── stemdict_nl.txt │ ├── stoptags_ja.txt │ ├── stopwords_ar.txt │ ├── stopwords_bg.txt │ ├── stopwords_ca.txt │ ├── stopwords_cz.txt │ ├── stopwords_da.txt │ ├── stopwords_de.txt │ ├── stopwords_el.txt │ ├── stopwords_en.txt │ ├── stopwords_es.txt │ ├── stopwords_eu.txt │ ├── stopwords_fa.txt │ ├── stopwords_fi.txt │ ├── stopwords_fr.txt │ ├── stopwords_ga.txt │ ├── stopwords_gl.txt │ ├── stopwords_hi.txt │ ├── stopwords_hu.txt │ ├── stopwords_hy.txt │ ├── stopwords_id.txt │ ├── stopwords_it.txt │ ├── stopwords_ja.txt │ ├── stopwords_lv.txt │ ├── stopwords_nl.txt │ ├── stopwords_no.txt │ ├── stopwords_pt.txt │ ├── stopwords_ro.txt │ ├── stopwords_ru.txt │ ├── stopwords_sv.txt │ ├── stopwords_th.txt │ ├── stopwords_tr.txt │ └── userdict_ja.txt │ ├── params.json │ ├── protwords.txt │ ├── schema.xml │ ├── solrconfig.xml │ ├── stopwords.txt │ ├── synonyms.txt │ └── wdfftypes.txt ├── test ├── corp-test-sample.py ├── corp-test-sample.sql ├── dev-corp-test-sample-corps.csv ├── issue_cred_direct.py ├── local-corp-test-sample-corps.csv ├── prod-corp-test-sample-corps.csv └── test-corp-test-sample-corps.csv └── vcr-server ├── .coveragerc ├── .gitignore ├── agent_webhooks ├── README.md ├── __init__.py ├── admin.py ├── apps.py ├── enums │ ├── __init__.py │ ├── format.py │ └── mapping_type.py ├── handlers │ ├── vc_di_credential.py │ ├── vc_di_credential_type.py │ └── vc_di_issuer.py ├── management │ └── commands │ │ ├── delete_credential_type.py │ │ ├── delete_topic.py │ │ └── reprocess_credentials.py ├── models.py ├── schemas │ ├── __init__.py │ ├── base │ │ ├── __init__.py │ │ └── path.py │ ├── credential_def.py │ ├── credential_mapping_def.py │ ├── credential_type_def.py │ ├── credential_type_registration_def.py │ ├── issuer_def.py │ ├── issuer_registration_def.py │ ├── mapping_def.py │ └── topic_def.py ├── setup.cfg ├── tests │ ├── __init__.py │ ├── data.py │ ├── test_credential.py │ ├── test_credential_type_manager.py │ ├── test_issuer_manager.py │ ├── test_schema_manager.py │ ├── test_schemas.py │ ├── test_vc_di_credential_manager.py │ ├── test_vc_di_credential_type_handler.py │ ├── test_vc_di_issuer_handler.py │ └── test_webhooks.py ├── urls.py ├── utils │ ├── __init__.py │ ├── credential.py │ ├── credential_type.py │ ├── issuer.py │ ├── schema.py │ └── vc_di_credential.py ├── views.py └── views_debug.py ├── api ├── __init__.py ├── v2 │ ├── README.md │ ├── __init__.py │ ├── apps.py │ ├── auth.py │ ├── docs │ │ └── images │ │ │ ├── tob.png │ │ │ └── tob.uml │ ├── feedback.py │ ├── indices │ │ ├── Name.py │ │ └── __init__.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0001_initial_user.py │ │ ├── 0002_category.py │ │ ├── 0002_user_display_name.py │ │ ├── 0003_auto_20180821_1840.py │ │ ├── 0003_auto_20181005_2140.py │ │ ├── 0004_auto_20180821_2221.py │ │ ├── 0004_auto_20190107_2203.py │ │ ├── 0005_auto_20180824_2256.py │ │ ├── 0006_auto_20180824_2333.py │ │ ├── 0007_auto_20180827_2356.py │ │ ├── 0008_auto_20180829_1902.py │ │ ├── 0009_auto_20180907_1641.py │ │ ├── 0010_auto_20180907_2354.py │ │ ├── 0011_credentialtype_visible_fields.py │ │ ├── 0012_credential_inactive.py │ │ ├── 0013_auto_20180921_1844.py │ │ ├── 0014_auto_20180921_2334.py │ │ ├── 0015_auto_20181025_2152.py │ │ ├── 0016_auto_20181027_1802.py │ │ ├── 0017_auto_20181113_1753.py │ │ ├── 0018_credentialtype_last_issue_date.py │ │ ├── 0019_credentialtype_url.py │ │ ├── 0020_auto_20181207_1925.py │ │ ├── 0021_auto_20190107_2203.py │ │ ├── 0022_auto_20190109_0014.py │ │ ├── 0023_issuer_endpoint.py │ │ ├── 0023_name_type.py │ │ ├── 0024_merge_20190201_1913.py │ │ ├── 0025_auto_20190729_1903.py │ │ ├── 0026_auto_20190923_0217.py │ │ ├── 0027_auto_20200519_2019.py │ │ ├── 0028_credentialtype_metadata.py │ │ ├── 0029_credentialtype_schema_labels.py │ │ ├── 0030_remove_credentialtype_schema_description.py │ │ ├── 0031_credential_raw_data.py │ │ ├── 0032_remove_credentialtype_visible_fields.py │ │ ├── 0033_credentialtype_format.py │ │ ├── 0034_credentialtype_raw_data.py │ │ ├── 0035_credential_format.py │ │ └── __init__.py │ ├── models │ │ ├── Address.py │ │ ├── Attribute.py │ │ ├── Auditable.py │ │ ├── Claim.py │ │ ├── Credential.py │ │ ├── CredentialSet.py │ │ ├── CredentialType.py │ │ ├── Issuer.py │ │ ├── Name.py │ │ ├── Schema.py │ │ ├── Topic.py │ │ ├── TopicRelationship.py │ │ ├── User.py │ │ ├── __init__.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ └── test_CredentialType.py │ ├── processor │ │ ├── README.md │ │ ├── __init__.py │ │ ├── bcgov │ │ │ ├── __init__.py │ │ │ └── entity_status.py │ │ └── string_helpers.py │ ├── pytest.ini │ ├── search │ │ ├── __init__.py │ │ ├── filters.py │ │ └── index.py │ ├── search_indexes.py │ ├── search_test.py │ ├── serializers │ │ ├── __init__.py │ │ ├── rest.py │ │ └── search.py │ ├── setup.cfg │ ├── signals.py │ ├── swagger.py │ ├── templates │ │ └── search │ │ │ └── indexes │ │ │ └── api_v2 │ │ │ └── credential_document.txt │ ├── tests │ │ ├── __init__.py │ │ ├── test_views_misc.py │ │ └── test_views_rest.py │ ├── urls.py │ ├── utils.py │ └── views │ │ ├── __init__.py │ │ ├── auditable.py │ │ ├── misc.py │ │ ├── rest.py │ │ └── search.py ├── v3 │ ├── __init__.py │ ├── apps.py │ ├── indexes │ │ ├── Address.py │ │ ├── Name.py │ │ ├── Topic.py │ │ └── __init__.py │ ├── mixins.py │ ├── search_filters.py │ ├── search_indexes.py │ ├── serializers │ │ ├── __init__.py │ │ └── search.py │ ├── urls.py │ └── views │ │ ├── __init__.py │ │ ├── rest.py │ │ ├── search.py │ │ └── viewsets.py └── v4 │ ├── __init__.py │ ├── apps.py │ ├── email_service.py │ ├── search │ └── filters │ │ ├── autocomplete.py │ │ ├── credential.py │ │ └── topic.py │ ├── serializers │ ├── rest │ │ └── credential.py │ └── search │ │ ├── autocomplete.py │ │ ├── fuzzy.py │ │ └── topic.py │ ├── tests.py │ ├── tests │ └── test_rest_view_credential.py │ ├── urls.py │ └── views │ ├── misc │ ├── contact.py │ └── feedback.py │ ├── rest │ ├── credential.py │ ├── credential_type.py │ ├── issuer.py │ ├── schema.py │ └── topic.py │ └── search │ ├── autocomplete.py │ ├── credential.py │ ├── fuzzy.py │ └── topic.py ├── app-vonx.py ├── manage.py ├── requirements.dev.txt ├── requirements.txt ├── rocketchat_hooks.py ├── scripts ├── buildSolrSchema.sh ├── deleteCredentialType.sh ├── deleteTopic.sh ├── rebuildSearchIndex.sh ├── reprocessCredentials.sh ├── runManageCmd.sh ├── runPythonCmd.sh ├── start-celery-worker.sh ├── test.sh └── updateSearchIndex.sh ├── subscriptions ├── __init__.py ├── celery.py ├── hook_utils.py ├── icatrestauth.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20190409_1050.py │ ├── 0003_auto_20190412_1916.py │ ├── 0004_auto_20191213_1723.py │ ├── 0005_auto_20191218_2215.py │ ├── 0006_credentialhookstats.py │ └── __init__.py ├── models │ ├── CredentialHook.py │ ├── CredentialHookStats.py │ ├── HookUser.py │ ├── HookableCredential.py │ ├── Subscription.py │ └── __init__.py ├── pytest.ini ├── serializers │ └── hooks.py ├── setup.cfg ├── tasks.py ├── tests │ ├── __init__.py │ ├── test_hook_utils.py │ ├── test_icatrestauth.py │ └── test_views.py ├── urls.py ├── utils.py └── views.py ├── vcr_server ├── __init__.py ├── authentication.py ├── custom_settings_bcgov.py ├── custom_settings_ongov.py ├── database.py ├── haystack.py ├── inspector.py ├── middleware │ ├── __init__.py │ ├── api_tracking.py │ ├── routing.py │ └── tests │ │ ├── __init__.py │ │ └── test_routing.py ├── pagination.py ├── permissions.py ├── pytest.ini ├── settings.py ├── setup.cfg ├── urls.py ├── utils │ ├── boot.py │ └── solrqueue.py └── views.py └── wsgi.py /.angulardoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/.angulardoc.json -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build_release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/.github/workflows/build_release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/.gitignore -------------------------------------------------------------------------------- /.tgitconfig: -------------------------------------------------------------------------------- 1 | [tgit] 2 | warnnosignedoffby = true 3 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /COMPLIANCE.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/COMPLIANCE.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/README.md -------------------------------------------------------------------------------- /docker/PROXY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/docker/PROXY.md -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/db/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/docker/db/Dockerfile -------------------------------------------------------------------------------- /docker/db/init-postgres-role.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/docker/db/init-postgres-role.sh -------------------------------------------------------------------------------- /docker/docker-compose-debug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/docker/docker-compose-debug.yml -------------------------------------------------------------------------------- /docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/docker/docker-compose.yml -------------------------------------------------------------------------------- /docker/docker-mac.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/docker/docker-mac.jpg -------------------------------------------------------------------------------- /docker/echo-service/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/docker/echo-service/Dockerfile -------------------------------------------------------------------------------- /docker/manage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/docker/manage -------------------------------------------------------------------------------- /docker/utils/Dockerfile.fixpermissions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/docker/utils/Dockerfile.fixpermissions -------------------------------------------------------------------------------- /docker/vcr-agent/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/docker/vcr-agent/Dockerfile -------------------------------------------------------------------------------- /docker/vcr-agent/debug-logger.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/docker/vcr-agent/debug-logger.cfg -------------------------------------------------------------------------------- /docs/CRArchitecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/docs/CRArchitecture.png -------------------------------------------------------------------------------- /docs/CRArchitecture.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/docs/CRArchitecture.puml -------------------------------------------------------------------------------- /docs/IndyCat-REST-Services.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/docs/IndyCat-REST-Services.md -------------------------------------------------------------------------------- /docs/IndyCat-Search-Integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/docs/IndyCat-Search-Integration.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/Schema-changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/docs/Schema-changes.md -------------------------------------------------------------------------------- /docs/Subscription-Web-Hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/docs/Subscription-Web-Hooks.md -------------------------------------------------------------------------------- /docs/assets/aries-vcr-architecture-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/docs/assets/aries-vcr-architecture-diagram.png -------------------------------------------------------------------------------- /docs/assets/aries-vcr-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/docs/assets/aries-vcr-logo.jpg -------------------------------------------------------------------------------- /docs/assets/attribute_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/docs/assets/attribute_key.png -------------------------------------------------------------------------------- /docs/assets/attribute_label_value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/docs/assets/attribute_label_value.png -------------------------------------------------------------------------------- /docs/assets/default_cred_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/docs/assets/default_cred_title.png -------------------------------------------------------------------------------- /docs/assets/default_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/docs/assets/default_highlighted.png -------------------------------------------------------------------------------- /docs/assets/highlighted_attributes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/docs/assets/highlighted_attributes.png -------------------------------------------------------------------------------- /docs/assets/indy-catalyst-logo-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/docs/assets/indy-catalyst-logo-bw.png -------------------------------------------------------------------------------- /docs/assets/reason_to_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/docs/assets/reason_to_demo.png -------------------------------------------------------------------------------- /docs/assets/reason_to_demo_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/docs/assets/reason_to_demo_result.png -------------------------------------------------------------------------------- /docs/assets/schema_label_cred_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/docs/assets/schema_label_cred_title.png -------------------------------------------------------------------------------- /docs/assets/verifiable-credential-model-ForWhiteBK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/docs/assets/verifiable-credential-model-ForWhiteBK.png -------------------------------------------------------------------------------- /docs/assets/verifiable-credential-model-ForWhiteBK.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/docs/assets/verifiable-credential-model-ForWhiteBK.svg -------------------------------------------------------------------------------- /docs/assets/yaml_meta_insert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/docs/assets/yaml_meta_insert.png -------------------------------------------------------------------------------- /docs/create-new-credential-registry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/docs/create-new-credential-registry.md -------------------------------------------------------------------------------- /docs/fix-corrupt-wallet-index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/docs/fix-corrupt-wallet-index.md -------------------------------------------------------------------------------- /docs/healthcare-vc-examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/docs/healthcare-vc-examples/README.md -------------------------------------------------------------------------------- /docs/healthcare-vc-examples/privacy_healthcare_credentials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/docs/healthcare-vc-examples/privacy_healthcare_credentials.md -------------------------------------------------------------------------------- /docs/healthcare-vc-examples/schemas/MentalWellnessSessionCredential.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/docs/healthcare-vc-examples/schemas/MentalWellnessSessionCredential.json -------------------------------------------------------------------------------- /docs/healthcare-vc-examples/schemas/PractitionerAttestationCredential.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/docs/healthcare-vc-examples/schemas/PractitionerAttestationCredential.json -------------------------------------------------------------------------------- /docs/healthcare-vc-examples/tests/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/docs/healthcare-vc-examples/tests/package-lock.json -------------------------------------------------------------------------------- /docs/healthcare-vc-examples/tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/docs/healthcare-vc-examples/tests/package.json -------------------------------------------------------------------------------- /docs/healthcare-vc-examples/tests/sample_MentalWellnessSessionCredential.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/docs/healthcare-vc-examples/tests/sample_MentalWellnessSessionCredential.json -------------------------------------------------------------------------------- /docs/healthcare-vc-examples/tests/sample_PractitionerAttestationCredential.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/docs/healthcare-vc-examples/tests/sample_PractitionerAttestationCredential.json -------------------------------------------------------------------------------- /docs/healthcare-vc-examples/tests/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/docs/healthcare-vc-examples/tests/validate.js -------------------------------------------------------------------------------- /echo-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/echo-service/README.md -------------------------------------------------------------------------------- /echo-service/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/echo-service/manage.py -------------------------------------------------------------------------------- /echo-service/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/echo-service/requirements.txt -------------------------------------------------------------------------------- /echo-service/resthooks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /echo-service/resthooks/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/echo-service/resthooks/settings.py -------------------------------------------------------------------------------- /echo-service/resthooks/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/echo-service/resthooks/urls.py -------------------------------------------------------------------------------- /echo-service/resthooks/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/echo-service/resthooks/wsgi.py -------------------------------------------------------------------------------- /echo-service/run_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/echo-service/run_docker.sh -------------------------------------------------------------------------------- /echo-service/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/echo-service/start.sh -------------------------------------------------------------------------------- /echo-service/tester/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /echo-service/tester/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/echo-service/tester/admin.py -------------------------------------------------------------------------------- /echo-service/tester/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/echo-service/tester/apps.py -------------------------------------------------------------------------------- /echo-service/tester/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/echo-service/tester/models.py -------------------------------------------------------------------------------- /echo-service/tester/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/echo-service/tester/tests.py -------------------------------------------------------------------------------- /echo-service/tester/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/echo-service/tester/urls.py -------------------------------------------------------------------------------- /echo-service/tester/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/echo-service/tester/views.py -------------------------------------------------------------------------------- /prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/prettierrc.json -------------------------------------------------------------------------------- /server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/README.md -------------------------------------------------------------------------------- /server/db/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/db/README.md -------------------------------------------------------------------------------- /server/db/config/postgresql-cfg/autovacuum.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/db/config/postgresql-cfg/autovacuum.conf -------------------------------------------------------------------------------- /server/db/config/postgresql-cfg/dbconnections.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/db/config/postgresql-cfg/dbconnections.conf -------------------------------------------------------------------------------- /server/db/config/postgresql-cfg/logging.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/db/config/postgresql-cfg/logging.conf -------------------------------------------------------------------------------- /server/message_families/issuer_registration/indy_catalyst_issuer_registration/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/message_families/issuer_registration/indy_catalyst_issuer_registration/handlers/registration_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/message_families/issuer_registration/indy_catalyst_issuer_registration/handlers/registration_handler.py -------------------------------------------------------------------------------- /server/message_families/issuer_registration/indy_catalyst_issuer_registration/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/message_families/issuer_registration/indy_catalyst_issuer_registration/manager.py -------------------------------------------------------------------------------- /server/message_families/issuer_registration/indy_catalyst_issuer_registration/message_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/message_families/issuer_registration/indy_catalyst_issuer_registration/message_types.py -------------------------------------------------------------------------------- /server/message_families/issuer_registration/indy_catalyst_issuer_registration/messages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/message_families/issuer_registration/indy_catalyst_issuer_registration/messages/register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/message_families/issuer_registration/indy_catalyst_issuer_registration/messages/register.py -------------------------------------------------------------------------------- /server/message_families/issuer_registration/indy_catalyst_issuer_registration/models/issuer_registration_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/message_families/issuer_registration/indy_catalyst_issuer_registration/models/issuer_registration_state.py -------------------------------------------------------------------------------- /server/message_families/issuer_registration/indy_catalyst_issuer_registration/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/message_families/issuer_registration/indy_catalyst_issuer_registration/routes.py -------------------------------------------------------------------------------- /server/message_families/issuer_registration/requirements.txt: -------------------------------------------------------------------------------- 1 | marshmallow>=3.0.0 2 | -------------------------------------------------------------------------------- /server/message_families/issuer_registration/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/message_families/issuer_registration/setup.py -------------------------------------------------------------------------------- /server/message_families/issuer_registration/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/message_families/issuer_registration/version.py -------------------------------------------------------------------------------- /server/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/setup.cfg -------------------------------------------------------------------------------- /server/solr/cores/credential_registry/conf/currency.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/solr/cores/credential_registry/conf/currency.xml -------------------------------------------------------------------------------- /server/solr/cores/credential_registry/conf/elevate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/solr/cores/credential_registry/conf/elevate.xml -------------------------------------------------------------------------------- /server/solr/cores/credential_registry/conf/lang/contractions_ca.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/solr/cores/credential_registry/conf/lang/contractions_ca.txt -------------------------------------------------------------------------------- /server/solr/cores/credential_registry/conf/lang/contractions_fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/solr/cores/credential_registry/conf/lang/contractions_fr.txt -------------------------------------------------------------------------------- /server/solr/cores/credential_registry/conf/lang/contractions_ga.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/solr/cores/credential_registry/conf/lang/contractions_ga.txt -------------------------------------------------------------------------------- /server/solr/cores/credential_registry/conf/lang/contractions_it.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/solr/cores/credential_registry/conf/lang/contractions_it.txt -------------------------------------------------------------------------------- /server/solr/cores/credential_registry/conf/lang/hyphenations_ga.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/solr/cores/credential_registry/conf/lang/hyphenations_ga.txt -------------------------------------------------------------------------------- /server/solr/cores/credential_registry/conf/lang/stemdict_nl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/solr/cores/credential_registry/conf/lang/stemdict_nl.txt -------------------------------------------------------------------------------- /server/solr/cores/credential_registry/conf/lang/stoptags_ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/solr/cores/credential_registry/conf/lang/stoptags_ja.txt -------------------------------------------------------------------------------- /server/solr/cores/credential_registry/conf/lang/stopwords_ar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/solr/cores/credential_registry/conf/lang/stopwords_ar.txt -------------------------------------------------------------------------------- /server/solr/cores/credential_registry/conf/lang/stopwords_bg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/solr/cores/credential_registry/conf/lang/stopwords_bg.txt -------------------------------------------------------------------------------- /server/solr/cores/credential_registry/conf/lang/stopwords_ca.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/solr/cores/credential_registry/conf/lang/stopwords_ca.txt -------------------------------------------------------------------------------- /server/solr/cores/credential_registry/conf/lang/stopwords_cz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/solr/cores/credential_registry/conf/lang/stopwords_cz.txt -------------------------------------------------------------------------------- /server/solr/cores/credential_registry/conf/lang/stopwords_da.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/solr/cores/credential_registry/conf/lang/stopwords_da.txt -------------------------------------------------------------------------------- /server/solr/cores/credential_registry/conf/lang/stopwords_de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/solr/cores/credential_registry/conf/lang/stopwords_de.txt -------------------------------------------------------------------------------- /server/solr/cores/credential_registry/conf/lang/stopwords_el.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/solr/cores/credential_registry/conf/lang/stopwords_el.txt -------------------------------------------------------------------------------- /server/solr/cores/credential_registry/conf/lang/stopwords_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/solr/cores/credential_registry/conf/lang/stopwords_en.txt -------------------------------------------------------------------------------- /server/solr/cores/credential_registry/conf/lang/stopwords_es.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/solr/cores/credential_registry/conf/lang/stopwords_es.txt -------------------------------------------------------------------------------- /server/solr/cores/credential_registry/conf/lang/stopwords_eu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/solr/cores/credential_registry/conf/lang/stopwords_eu.txt -------------------------------------------------------------------------------- /server/solr/cores/credential_registry/conf/lang/stopwords_fa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/solr/cores/credential_registry/conf/lang/stopwords_fa.txt -------------------------------------------------------------------------------- /server/solr/cores/credential_registry/conf/lang/stopwords_fi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/solr/cores/credential_registry/conf/lang/stopwords_fi.txt -------------------------------------------------------------------------------- /server/solr/cores/credential_registry/conf/lang/stopwords_fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/solr/cores/credential_registry/conf/lang/stopwords_fr.txt -------------------------------------------------------------------------------- /server/solr/cores/credential_registry/conf/lang/stopwords_ga.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/solr/cores/credential_registry/conf/lang/stopwords_ga.txt -------------------------------------------------------------------------------- /server/solr/cores/credential_registry/conf/lang/stopwords_gl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/solr/cores/credential_registry/conf/lang/stopwords_gl.txt -------------------------------------------------------------------------------- /server/solr/cores/credential_registry/conf/lang/stopwords_hi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/solr/cores/credential_registry/conf/lang/stopwords_hi.txt -------------------------------------------------------------------------------- /server/solr/cores/credential_registry/conf/lang/stopwords_hu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/solr/cores/credential_registry/conf/lang/stopwords_hu.txt -------------------------------------------------------------------------------- /server/solr/cores/credential_registry/conf/lang/stopwords_hy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/solr/cores/credential_registry/conf/lang/stopwords_hy.txt -------------------------------------------------------------------------------- /server/solr/cores/credential_registry/conf/lang/stopwords_id.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/solr/cores/credential_registry/conf/lang/stopwords_id.txt -------------------------------------------------------------------------------- /server/solr/cores/credential_registry/conf/lang/stopwords_it.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/solr/cores/credential_registry/conf/lang/stopwords_it.txt -------------------------------------------------------------------------------- /server/solr/cores/credential_registry/conf/lang/stopwords_ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/solr/cores/credential_registry/conf/lang/stopwords_ja.txt -------------------------------------------------------------------------------- /server/solr/cores/credential_registry/conf/lang/stopwords_lv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/solr/cores/credential_registry/conf/lang/stopwords_lv.txt -------------------------------------------------------------------------------- /server/solr/cores/credential_registry/conf/lang/stopwords_nl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/solr/cores/credential_registry/conf/lang/stopwords_nl.txt -------------------------------------------------------------------------------- /server/solr/cores/credential_registry/conf/lang/stopwords_no.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/solr/cores/credential_registry/conf/lang/stopwords_no.txt -------------------------------------------------------------------------------- /server/solr/cores/credential_registry/conf/lang/stopwords_pt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/solr/cores/credential_registry/conf/lang/stopwords_pt.txt -------------------------------------------------------------------------------- /server/solr/cores/credential_registry/conf/lang/stopwords_ro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/solr/cores/credential_registry/conf/lang/stopwords_ro.txt -------------------------------------------------------------------------------- /server/solr/cores/credential_registry/conf/lang/stopwords_ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/solr/cores/credential_registry/conf/lang/stopwords_ru.txt -------------------------------------------------------------------------------- /server/solr/cores/credential_registry/conf/lang/stopwords_sv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/solr/cores/credential_registry/conf/lang/stopwords_sv.txt -------------------------------------------------------------------------------- /server/solr/cores/credential_registry/conf/lang/stopwords_th.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/solr/cores/credential_registry/conf/lang/stopwords_th.txt -------------------------------------------------------------------------------- /server/solr/cores/credential_registry/conf/lang/stopwords_tr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/solr/cores/credential_registry/conf/lang/stopwords_tr.txt -------------------------------------------------------------------------------- /server/solr/cores/credential_registry/conf/lang/userdict_ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/solr/cores/credential_registry/conf/lang/userdict_ja.txt -------------------------------------------------------------------------------- /server/solr/cores/credential_registry/conf/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/solr/cores/credential_registry/conf/params.json -------------------------------------------------------------------------------- /server/solr/cores/credential_registry/conf/protwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/solr/cores/credential_registry/conf/protwords.txt -------------------------------------------------------------------------------- /server/solr/cores/credential_registry/conf/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/solr/cores/credential_registry/conf/schema.xml -------------------------------------------------------------------------------- /server/solr/cores/credential_registry/conf/solrconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/solr/cores/credential_registry/conf/solrconfig.xml -------------------------------------------------------------------------------- /server/solr/cores/credential_registry/conf/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/solr/cores/credential_registry/conf/stopwords.txt -------------------------------------------------------------------------------- /server/solr/cores/credential_registry/conf/synonyms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/solr/cores/credential_registry/conf/synonyms.txt -------------------------------------------------------------------------------- /server/solr/cores/credential_registry/conf/wdfftypes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/solr/cores/credential_registry/conf/wdfftypes.txt -------------------------------------------------------------------------------- /server/test/corp-test-sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/test/corp-test-sample.py -------------------------------------------------------------------------------- /server/test/corp-test-sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/test/corp-test-sample.sql -------------------------------------------------------------------------------- /server/test/dev-corp-test-sample-corps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/test/dev-corp-test-sample-corps.csv -------------------------------------------------------------------------------- /server/test/issue_cred_direct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/test/issue_cred_direct.py -------------------------------------------------------------------------------- /server/test/local-corp-test-sample-corps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/test/local-corp-test-sample-corps.csv -------------------------------------------------------------------------------- /server/test/prod-corp-test-sample-corps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/test/prod-corp-test-sample-corps.csv -------------------------------------------------------------------------------- /server/test/test-corp-test-sample-corps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/test/test-corp-test-sample-corps.csv -------------------------------------------------------------------------------- /server/vcr-server/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/.coveragerc -------------------------------------------------------------------------------- /server/vcr-server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/.gitignore -------------------------------------------------------------------------------- /server/vcr-server/agent_webhooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/agent_webhooks/README.md -------------------------------------------------------------------------------- /server/vcr-server/agent_webhooks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/vcr-server/agent_webhooks/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/agent_webhooks/admin.py -------------------------------------------------------------------------------- /server/vcr-server/agent_webhooks/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/agent_webhooks/apps.py -------------------------------------------------------------------------------- /server/vcr-server/agent_webhooks/enums/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/agent_webhooks/enums/__init__.py -------------------------------------------------------------------------------- /server/vcr-server/agent_webhooks/enums/format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/agent_webhooks/enums/format.py -------------------------------------------------------------------------------- /server/vcr-server/agent_webhooks/enums/mapping_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/agent_webhooks/enums/mapping_type.py -------------------------------------------------------------------------------- /server/vcr-server/agent_webhooks/handlers/vc_di_credential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/agent_webhooks/handlers/vc_di_credential.py -------------------------------------------------------------------------------- /server/vcr-server/agent_webhooks/handlers/vc_di_credential_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/agent_webhooks/handlers/vc_di_credential_type.py -------------------------------------------------------------------------------- /server/vcr-server/agent_webhooks/handlers/vc_di_issuer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/agent_webhooks/handlers/vc_di_issuer.py -------------------------------------------------------------------------------- /server/vcr-server/agent_webhooks/management/commands/delete_credential_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/agent_webhooks/management/commands/delete_credential_type.py -------------------------------------------------------------------------------- /server/vcr-server/agent_webhooks/management/commands/delete_topic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/agent_webhooks/management/commands/delete_topic.py -------------------------------------------------------------------------------- /server/vcr-server/agent_webhooks/management/commands/reprocess_credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/agent_webhooks/management/commands/reprocess_credentials.py -------------------------------------------------------------------------------- /server/vcr-server/agent_webhooks/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/agent_webhooks/models.py -------------------------------------------------------------------------------- /server/vcr-server/agent_webhooks/schemas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/agent_webhooks/schemas/__init__.py -------------------------------------------------------------------------------- /server/vcr-server/agent_webhooks/schemas/base/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/agent_webhooks/schemas/base/__init__.py -------------------------------------------------------------------------------- /server/vcr-server/agent_webhooks/schemas/base/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/agent_webhooks/schemas/base/path.py -------------------------------------------------------------------------------- /server/vcr-server/agent_webhooks/schemas/credential_def.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/agent_webhooks/schemas/credential_def.py -------------------------------------------------------------------------------- /server/vcr-server/agent_webhooks/schemas/credential_mapping_def.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/agent_webhooks/schemas/credential_mapping_def.py -------------------------------------------------------------------------------- /server/vcr-server/agent_webhooks/schemas/credential_type_def.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/agent_webhooks/schemas/credential_type_def.py -------------------------------------------------------------------------------- /server/vcr-server/agent_webhooks/schemas/credential_type_registration_def.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/agent_webhooks/schemas/credential_type_registration_def.py -------------------------------------------------------------------------------- /server/vcr-server/agent_webhooks/schemas/issuer_def.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/agent_webhooks/schemas/issuer_def.py -------------------------------------------------------------------------------- /server/vcr-server/agent_webhooks/schemas/issuer_registration_def.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/agent_webhooks/schemas/issuer_registration_def.py -------------------------------------------------------------------------------- /server/vcr-server/agent_webhooks/schemas/mapping_def.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/agent_webhooks/schemas/mapping_def.py -------------------------------------------------------------------------------- /server/vcr-server/agent_webhooks/schemas/topic_def.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/agent_webhooks/schemas/topic_def.py -------------------------------------------------------------------------------- /server/vcr-server/agent_webhooks/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/agent_webhooks/setup.cfg -------------------------------------------------------------------------------- /server/vcr-server/agent_webhooks/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/vcr-server/agent_webhooks/tests/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/agent_webhooks/tests/data.py -------------------------------------------------------------------------------- /server/vcr-server/agent_webhooks/tests/test_credential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/agent_webhooks/tests/test_credential.py -------------------------------------------------------------------------------- /server/vcr-server/agent_webhooks/tests/test_credential_type_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/agent_webhooks/tests/test_credential_type_manager.py -------------------------------------------------------------------------------- /server/vcr-server/agent_webhooks/tests/test_issuer_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/agent_webhooks/tests/test_issuer_manager.py -------------------------------------------------------------------------------- /server/vcr-server/agent_webhooks/tests/test_schema_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/agent_webhooks/tests/test_schema_manager.py -------------------------------------------------------------------------------- /server/vcr-server/agent_webhooks/tests/test_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/agent_webhooks/tests/test_schemas.py -------------------------------------------------------------------------------- /server/vcr-server/agent_webhooks/tests/test_vc_di_credential_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/agent_webhooks/tests/test_vc_di_credential_manager.py -------------------------------------------------------------------------------- /server/vcr-server/agent_webhooks/tests/test_vc_di_credential_type_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/agent_webhooks/tests/test_vc_di_credential_type_handler.py -------------------------------------------------------------------------------- /server/vcr-server/agent_webhooks/tests/test_vc_di_issuer_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/agent_webhooks/tests/test_vc_di_issuer_handler.py -------------------------------------------------------------------------------- /server/vcr-server/agent_webhooks/tests/test_webhooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/agent_webhooks/tests/test_webhooks.py -------------------------------------------------------------------------------- /server/vcr-server/agent_webhooks/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/agent_webhooks/urls.py -------------------------------------------------------------------------------- /server/vcr-server/agent_webhooks/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/vcr-server/agent_webhooks/utils/credential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/agent_webhooks/utils/credential.py -------------------------------------------------------------------------------- /server/vcr-server/agent_webhooks/utils/credential_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/agent_webhooks/utils/credential_type.py -------------------------------------------------------------------------------- /server/vcr-server/agent_webhooks/utils/issuer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/agent_webhooks/utils/issuer.py -------------------------------------------------------------------------------- /server/vcr-server/agent_webhooks/utils/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/agent_webhooks/utils/schema.py -------------------------------------------------------------------------------- /server/vcr-server/agent_webhooks/utils/vc_di_credential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/agent_webhooks/utils/vc_di_credential.py -------------------------------------------------------------------------------- /server/vcr-server/agent_webhooks/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/agent_webhooks/views.py -------------------------------------------------------------------------------- /server/vcr-server/agent_webhooks/views_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/agent_webhooks/views_debug.py -------------------------------------------------------------------------------- /server/vcr-server/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/vcr-server/api/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/README.md -------------------------------------------------------------------------------- /server/vcr-server/api/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/__init__.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/apps.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/auth.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/docs/images/tob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/docs/images/tob.png -------------------------------------------------------------------------------- /server/vcr-server/api/v2/docs/images/tob.uml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/docs/images/tob.uml -------------------------------------------------------------------------------- /server/vcr-server/api/v2/feedback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/feedback.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/indices/Name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/indices/Name.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/indices/__init__.py: -------------------------------------------------------------------------------- 1 | from . import Name 2 | -------------------------------------------------------------------------------- /server/vcr-server/api/v2/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/migrations/0001_initial.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/migrations/0001_initial_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/migrations/0001_initial_user.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/migrations/0002_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/migrations/0002_category.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/migrations/0002_user_display_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/migrations/0002_user_display_name.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/migrations/0003_auto_20180821_1840.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/migrations/0003_auto_20180821_1840.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/migrations/0003_auto_20181005_2140.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/migrations/0003_auto_20181005_2140.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/migrations/0004_auto_20180821_2221.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/migrations/0004_auto_20180821_2221.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/migrations/0004_auto_20190107_2203.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/migrations/0004_auto_20190107_2203.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/migrations/0005_auto_20180824_2256.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/migrations/0005_auto_20180824_2256.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/migrations/0006_auto_20180824_2333.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/migrations/0006_auto_20180824_2333.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/migrations/0007_auto_20180827_2356.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/migrations/0007_auto_20180827_2356.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/migrations/0008_auto_20180829_1902.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/migrations/0008_auto_20180829_1902.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/migrations/0009_auto_20180907_1641.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/migrations/0009_auto_20180907_1641.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/migrations/0010_auto_20180907_2354.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/migrations/0010_auto_20180907_2354.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/migrations/0011_credentialtype_visible_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/migrations/0011_credentialtype_visible_fields.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/migrations/0012_credential_inactive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/migrations/0012_credential_inactive.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/migrations/0013_auto_20180921_1844.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/migrations/0013_auto_20180921_1844.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/migrations/0014_auto_20180921_2334.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/migrations/0014_auto_20180921_2334.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/migrations/0015_auto_20181025_2152.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/migrations/0015_auto_20181025_2152.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/migrations/0016_auto_20181027_1802.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/migrations/0016_auto_20181027_1802.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/migrations/0017_auto_20181113_1753.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/migrations/0017_auto_20181113_1753.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/migrations/0018_credentialtype_last_issue_date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/migrations/0018_credentialtype_last_issue_date.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/migrations/0019_credentialtype_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/migrations/0019_credentialtype_url.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/migrations/0020_auto_20181207_1925.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/migrations/0020_auto_20181207_1925.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/migrations/0021_auto_20190107_2203.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/migrations/0021_auto_20190107_2203.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/migrations/0022_auto_20190109_0014.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/migrations/0022_auto_20190109_0014.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/migrations/0023_issuer_endpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/migrations/0023_issuer_endpoint.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/migrations/0023_name_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/migrations/0023_name_type.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/migrations/0024_merge_20190201_1913.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/migrations/0024_merge_20190201_1913.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/migrations/0025_auto_20190729_1903.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/migrations/0025_auto_20190729_1903.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/migrations/0026_auto_20190923_0217.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/migrations/0026_auto_20190923_0217.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/migrations/0027_auto_20200519_2019.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/migrations/0027_auto_20200519_2019.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/migrations/0028_credentialtype_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/migrations/0028_credentialtype_metadata.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/migrations/0029_credentialtype_schema_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/migrations/0029_credentialtype_schema_labels.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/migrations/0030_remove_credentialtype_schema_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/migrations/0030_remove_credentialtype_schema_description.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/migrations/0031_credential_raw_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/migrations/0031_credential_raw_data.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/migrations/0032_remove_credentialtype_visible_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/migrations/0032_remove_credentialtype_visible_fields.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/migrations/0033_credentialtype_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/migrations/0033_credentialtype_format.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/migrations/0034_credentialtype_raw_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/migrations/0034_credentialtype_raw_data.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/migrations/0035_credential_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/migrations/0035_credential_format.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/vcr-server/api/v2/models/Address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/models/Address.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/models/Attribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/models/Attribute.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/models/Auditable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/models/Auditable.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/models/Claim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/models/Claim.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/models/Credential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/models/Credential.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/models/CredentialSet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/models/CredentialSet.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/models/CredentialType.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/models/CredentialType.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/models/Issuer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/models/Issuer.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/models/Name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/models/Name.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/models/Schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/models/Schema.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/models/Topic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/models/Topic.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/models/TopicRelationship.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/models/TopicRelationship.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/models/User.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/models/User.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/models/__init__.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/models/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/vcr-server/api/v2/models/tests/test_CredentialType.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/models/tests/test_CredentialType.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/processor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/processor/README.md -------------------------------------------------------------------------------- /server/vcr-server/api/v2/processor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/vcr-server/api/v2/processor/bcgov/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/vcr-server/api/v2/processor/bcgov/entity_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/processor/bcgov/entity_status.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/processor/string_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/processor/string_helpers.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/pytest.ini -------------------------------------------------------------------------------- /server/vcr-server/api/v2/search/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/vcr-server/api/v2/search/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/search/filters.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/search/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/search/index.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/search_indexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/search_indexes.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/search_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/search_test.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/serializers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/vcr-server/api/v2/serializers/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/serializers/rest.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/serializers/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/serializers/search.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/setup.cfg -------------------------------------------------------------------------------- /server/vcr-server/api/v2/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/signals.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/swagger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/swagger.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/templates/search/indexes/api_v2/credential_document.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/templates/search/indexes/api_v2/credential_document.txt -------------------------------------------------------------------------------- /server/vcr-server/api/v2/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/vcr-server/api/v2/tests/test_views_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/tests/test_views_misc.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/tests/test_views_rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/tests/test_views_rest.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/urls.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/utils.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/vcr-server/api/v2/views/auditable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/views/auditable.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/views/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/views/misc.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/views/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/views/rest.py -------------------------------------------------------------------------------- /server/vcr-server/api/v2/views/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v2/views/search.py -------------------------------------------------------------------------------- /server/vcr-server/api/v3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/vcr-server/api/v3/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v3/apps.py -------------------------------------------------------------------------------- /server/vcr-server/api/v3/indexes/Address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v3/indexes/Address.py -------------------------------------------------------------------------------- /server/vcr-server/api/v3/indexes/Name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v3/indexes/Name.py -------------------------------------------------------------------------------- /server/vcr-server/api/v3/indexes/Topic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v3/indexes/Topic.py -------------------------------------------------------------------------------- /server/vcr-server/api/v3/indexes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/vcr-server/api/v3/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v3/mixins.py -------------------------------------------------------------------------------- /server/vcr-server/api/v3/search_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v3/search_filters.py -------------------------------------------------------------------------------- /server/vcr-server/api/v3/search_indexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v3/search_indexes.py -------------------------------------------------------------------------------- /server/vcr-server/api/v3/serializers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/vcr-server/api/v3/serializers/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v3/serializers/search.py -------------------------------------------------------------------------------- /server/vcr-server/api/v3/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v3/urls.py -------------------------------------------------------------------------------- /server/vcr-server/api/v3/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/vcr-server/api/v3/views/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v3/views/rest.py -------------------------------------------------------------------------------- /server/vcr-server/api/v3/views/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v3/views/search.py -------------------------------------------------------------------------------- /server/vcr-server/api/v3/views/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v3/views/viewsets.py -------------------------------------------------------------------------------- /server/vcr-server/api/v4/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/vcr-server/api/v4/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v4/apps.py -------------------------------------------------------------------------------- /server/vcr-server/api/v4/email_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v4/email_service.py -------------------------------------------------------------------------------- /server/vcr-server/api/v4/search/filters/autocomplete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v4/search/filters/autocomplete.py -------------------------------------------------------------------------------- /server/vcr-server/api/v4/search/filters/credential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v4/search/filters/credential.py -------------------------------------------------------------------------------- /server/vcr-server/api/v4/search/filters/topic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v4/search/filters/topic.py -------------------------------------------------------------------------------- /server/vcr-server/api/v4/serializers/rest/credential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v4/serializers/rest/credential.py -------------------------------------------------------------------------------- /server/vcr-server/api/v4/serializers/search/autocomplete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v4/serializers/search/autocomplete.py -------------------------------------------------------------------------------- /server/vcr-server/api/v4/serializers/search/fuzzy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v4/serializers/search/fuzzy.py -------------------------------------------------------------------------------- /server/vcr-server/api/v4/serializers/search/topic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v4/serializers/search/topic.py -------------------------------------------------------------------------------- /server/vcr-server/api/v4/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v4/tests.py -------------------------------------------------------------------------------- /server/vcr-server/api/v4/tests/test_rest_view_credential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v4/tests/test_rest_view_credential.py -------------------------------------------------------------------------------- /server/vcr-server/api/v4/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v4/urls.py -------------------------------------------------------------------------------- /server/vcr-server/api/v4/views/misc/contact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v4/views/misc/contact.py -------------------------------------------------------------------------------- /server/vcr-server/api/v4/views/misc/feedback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v4/views/misc/feedback.py -------------------------------------------------------------------------------- /server/vcr-server/api/v4/views/rest/credential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v4/views/rest/credential.py -------------------------------------------------------------------------------- /server/vcr-server/api/v4/views/rest/credential_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v4/views/rest/credential_type.py -------------------------------------------------------------------------------- /server/vcr-server/api/v4/views/rest/issuer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v4/views/rest/issuer.py -------------------------------------------------------------------------------- /server/vcr-server/api/v4/views/rest/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v4/views/rest/schema.py -------------------------------------------------------------------------------- /server/vcr-server/api/v4/views/rest/topic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v4/views/rest/topic.py -------------------------------------------------------------------------------- /server/vcr-server/api/v4/views/search/autocomplete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v4/views/search/autocomplete.py -------------------------------------------------------------------------------- /server/vcr-server/api/v4/views/search/credential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v4/views/search/credential.py -------------------------------------------------------------------------------- /server/vcr-server/api/v4/views/search/fuzzy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v4/views/search/fuzzy.py -------------------------------------------------------------------------------- /server/vcr-server/api/v4/views/search/topic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/api/v4/views/search/topic.py -------------------------------------------------------------------------------- /server/vcr-server/app-vonx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/app-vonx.py -------------------------------------------------------------------------------- /server/vcr-server/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/manage.py -------------------------------------------------------------------------------- /server/vcr-server/requirements.dev.txt: -------------------------------------------------------------------------------- 1 | django_nose 2 | black 3 | flake8 4 | -------------------------------------------------------------------------------- /server/vcr-server/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/requirements.txt -------------------------------------------------------------------------------- /server/vcr-server/rocketchat_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/rocketchat_hooks.py -------------------------------------------------------------------------------- /server/vcr-server/scripts/buildSolrSchema.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/scripts/buildSolrSchema.sh -------------------------------------------------------------------------------- /server/vcr-server/scripts/deleteCredentialType.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/scripts/deleteCredentialType.sh -------------------------------------------------------------------------------- /server/vcr-server/scripts/deleteTopic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/scripts/deleteTopic.sh -------------------------------------------------------------------------------- /server/vcr-server/scripts/rebuildSearchIndex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/scripts/rebuildSearchIndex.sh -------------------------------------------------------------------------------- /server/vcr-server/scripts/reprocessCredentials.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/scripts/reprocessCredentials.sh -------------------------------------------------------------------------------- /server/vcr-server/scripts/runManageCmd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/scripts/runManageCmd.sh -------------------------------------------------------------------------------- /server/vcr-server/scripts/runPythonCmd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/scripts/runPythonCmd.sh -------------------------------------------------------------------------------- /server/vcr-server/scripts/start-celery-worker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/scripts/start-celery-worker.sh -------------------------------------------------------------------------------- /server/vcr-server/scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/scripts/test.sh -------------------------------------------------------------------------------- /server/vcr-server/scripts/updateSearchIndex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/scripts/updateSearchIndex.sh -------------------------------------------------------------------------------- /server/vcr-server/subscriptions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/subscriptions/__init__.py -------------------------------------------------------------------------------- /server/vcr-server/subscriptions/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/subscriptions/celery.py -------------------------------------------------------------------------------- /server/vcr-server/subscriptions/hook_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/subscriptions/hook_utils.py -------------------------------------------------------------------------------- /server/vcr-server/subscriptions/icatrestauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/subscriptions/icatrestauth.py -------------------------------------------------------------------------------- /server/vcr-server/subscriptions/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/subscriptions/migrations/0001_initial.py -------------------------------------------------------------------------------- /server/vcr-server/subscriptions/migrations/0002_auto_20190409_1050.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/subscriptions/migrations/0002_auto_20190409_1050.py -------------------------------------------------------------------------------- /server/vcr-server/subscriptions/migrations/0003_auto_20190412_1916.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/subscriptions/migrations/0003_auto_20190412_1916.py -------------------------------------------------------------------------------- /server/vcr-server/subscriptions/migrations/0004_auto_20191213_1723.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/subscriptions/migrations/0004_auto_20191213_1723.py -------------------------------------------------------------------------------- /server/vcr-server/subscriptions/migrations/0005_auto_20191218_2215.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/subscriptions/migrations/0005_auto_20191218_2215.py -------------------------------------------------------------------------------- /server/vcr-server/subscriptions/migrations/0006_credentialhookstats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/subscriptions/migrations/0006_credentialhookstats.py -------------------------------------------------------------------------------- /server/vcr-server/subscriptions/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/vcr-server/subscriptions/models/CredentialHook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/subscriptions/models/CredentialHook.py -------------------------------------------------------------------------------- /server/vcr-server/subscriptions/models/CredentialHookStats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/subscriptions/models/CredentialHookStats.py -------------------------------------------------------------------------------- /server/vcr-server/subscriptions/models/HookUser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/subscriptions/models/HookUser.py -------------------------------------------------------------------------------- /server/vcr-server/subscriptions/models/HookableCredential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/subscriptions/models/HookableCredential.py -------------------------------------------------------------------------------- /server/vcr-server/subscriptions/models/Subscription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/subscriptions/models/Subscription.py -------------------------------------------------------------------------------- /server/vcr-server/subscriptions/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/subscriptions/models/__init__.py -------------------------------------------------------------------------------- /server/vcr-server/subscriptions/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/subscriptions/pytest.ini -------------------------------------------------------------------------------- /server/vcr-server/subscriptions/serializers/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/subscriptions/serializers/hooks.py -------------------------------------------------------------------------------- /server/vcr-server/subscriptions/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/subscriptions/setup.cfg -------------------------------------------------------------------------------- /server/vcr-server/subscriptions/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/subscriptions/tasks.py -------------------------------------------------------------------------------- /server/vcr-server/subscriptions/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/vcr-server/subscriptions/tests/test_hook_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/subscriptions/tests/test_hook_utils.py -------------------------------------------------------------------------------- /server/vcr-server/subscriptions/tests/test_icatrestauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/subscriptions/tests/test_icatrestauth.py -------------------------------------------------------------------------------- /server/vcr-server/subscriptions/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/subscriptions/tests/test_views.py -------------------------------------------------------------------------------- /server/vcr-server/subscriptions/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/subscriptions/urls.py -------------------------------------------------------------------------------- /server/vcr-server/subscriptions/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/subscriptions/utils.py -------------------------------------------------------------------------------- /server/vcr-server/subscriptions/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/subscriptions/views.py -------------------------------------------------------------------------------- /server/vcr-server/vcr_server/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Package for app. 3 | """ 4 | -------------------------------------------------------------------------------- /server/vcr-server/vcr_server/authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/vcr_server/authentication.py -------------------------------------------------------------------------------- /server/vcr-server/vcr_server/custom_settings_bcgov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/vcr_server/custom_settings_bcgov.py -------------------------------------------------------------------------------- /server/vcr-server/vcr_server/custom_settings_ongov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/vcr_server/custom_settings_ongov.py -------------------------------------------------------------------------------- /server/vcr-server/vcr_server/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/vcr_server/database.py -------------------------------------------------------------------------------- /server/vcr-server/vcr_server/haystack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/vcr_server/haystack.py -------------------------------------------------------------------------------- /server/vcr-server/vcr_server/inspector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/vcr_server/inspector.py -------------------------------------------------------------------------------- /server/vcr-server/vcr_server/middleware/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/vcr-server/vcr_server/middleware/api_tracking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/vcr_server/middleware/api_tracking.py -------------------------------------------------------------------------------- /server/vcr-server/vcr_server/middleware/routing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/vcr_server/middleware/routing.py -------------------------------------------------------------------------------- /server/vcr-server/vcr_server/middleware/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/vcr-server/vcr_server/middleware/tests/test_routing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/vcr_server/middleware/tests/test_routing.py -------------------------------------------------------------------------------- /server/vcr-server/vcr_server/pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/vcr_server/pagination.py -------------------------------------------------------------------------------- /server/vcr-server/vcr_server/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/vcr_server/permissions.py -------------------------------------------------------------------------------- /server/vcr-server/vcr_server/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/vcr_server/pytest.ini -------------------------------------------------------------------------------- /server/vcr-server/vcr_server/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/vcr_server/settings.py -------------------------------------------------------------------------------- /server/vcr-server/vcr_server/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/vcr_server/setup.cfg -------------------------------------------------------------------------------- /server/vcr-server/vcr_server/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/vcr_server/urls.py -------------------------------------------------------------------------------- /server/vcr-server/vcr_server/utils/boot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/vcr_server/utils/boot.py -------------------------------------------------------------------------------- /server/vcr-server/vcr_server/utils/solrqueue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/vcr_server/utils/solrqueue.py -------------------------------------------------------------------------------- /server/vcr-server/vcr_server/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/vcr_server/views.py -------------------------------------------------------------------------------- /server/vcr-server/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/aries-vcr/HEAD/server/vcr-server/wsgi.py --------------------------------------------------------------------------------