Skip to content

Commit f89f512

Browse files
Clean up
Signed-off-by: Alexander Shenshin <alexander.shenshin@dsr-corporation.com>
1 parent 0db821f commit f89f512

52 files changed

Lines changed: 139 additions & 2586 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

heka-identity-service-web-ui/.env

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
REACT_APP_AGENCY_ENDPOINT=http://localhost:3000
22
REACT_APP_AUTH_SERVICE_ENDPOINT=http://localhost:3004
3-
REACT_APP_DEMO_USER_DID=did:key:z6MkunDZzN3cYfjszMavAo1SEQ5qpxUTTfN5Wvdm2cNeS4V9
4-
REACT_APP_DEMO_USER_ACCESS_TOKEN=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJyb2xlcyI6WyJBZG1pbiJdLCJuYW1lIjoiZGVtbyIsInR5cGUiOiJhY2Nlc3MiLCJpYXQiOjE3NzQ1NjY3MzIsImV4cCI6MzI4Nzg1NjY3MzIsImF1ZCI6Ikhla2EgSWRlbnRpdHkgU2VydmljZSIsImlzcyI6Ikhla2EiLCJzdWIiOiI5ZDllYjNiNy1mODk5LTQyOGUtYTU3OS0wZjU5MDk2NmQzYTgifQ.Z9reLDXIzjxbpghGenvBPeD0piRmtcI8ivolXNIgzpw
5-
REACT_APP_DEMO_USER_REFRESH_TOKEN=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpYXQiOjE3NzQ1NjY3MzIsImV4cCI6MTg2MDk2NjczMiwiYXVkIjoiSGVrYSBJZGVudGl0eSBTZXJ2aWNlIiwiaXNzIjoiSGVrYSIsInN1YiI6IjlkOWViM2I3LWY4OTktNDI4ZS1hNTc5LTBmNTkwOTY2ZDNhOCIsImp0aSI6ImU1ODAzOGJiLTdlMzAtNDc1OS1iMTM5LTY2MGE5NzU1YzI2MiJ9.kS6dlantcuP_KpEW7rdnXEsuDnC1Nf5dZE9pJO2KssE
3+
REACT_APP_DEMO_USER_DID=
4+
REACT_APP_DEMO_USER_ACCESS_TOKEN=
5+
REACT_APP_DEMO_USER_REFRESH_TOKEN=

heka-identity-service-web-ui/src/entities/Credential/model/services/offerCredential.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,6 @@ const offerOpenId4VcCredential = async (
9090
params.credentialType,
9191
),
9292
});
93-
console.log(schemaRegistration);
9493
const credential = buildCredential({
9594
format: params.credentialType as Openid4CredentialFormat,
9695
did: params.did,
@@ -181,6 +180,5 @@ export const getSchemaRegistration = async (
181180
if (!schemaRegistration.data) {
182181
throw new Error('Schema is not registered');
183182
}
184-
console.log(schemaRegistration, params);
185183
return schemaRegistration.data as SchemaRegistration;
186184
};

heka-identity-service-web-ui/src/pages/SignUp/SignUp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ const SignUpView: React.FC = () => {
6262
}),
6363
);
6464
} catch (e) {
65-
console.log(e.message);
65+
console.error(e.message);
6666
}
6767
},
6868
[dispatch],

heka-identity-service/src/app.starter.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,8 +142,6 @@ export async function startApp(app: INestApplication, { withSwaggerUi }: { withS
142142
defaultVersion: VERSION_NEUTRAL,
143143
})
144144

145-
console.log(expressConfig)
146-
147145
if (expressConfig.enableCors) {
148146
app.enableCors(expressConfig.corsOptions)
149147
}

heka-identity-service/src/credential-v2/credential-v2.service.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,6 @@ export class CredentialV2Service {
172172
request: OfferByIssuanceTemplateRequest,
173173
): Promise<OpenId4VcIssuanceSessionsCreateOfferResponse> {
174174
const registration = this.ensureSchemaRegistration(template)
175-
this.logger.error(JSON.stringify(registration))
176175

177176
return await this.openId4VcIssuanceSessionService.offer(authInfo, tenantAgent, {
178177
publicIssuerId: registration.did,

heka-wallet/.planning/codebase/ARCHITECTURE.md

Lines changed: 0 additions & 218 deletions
This file was deleted.

0 commit comments

Comments
 (0)