Generating Link
diff --git a/project/ws/app/src/lib/routes/home/services/onboarding.service.ts b/project/ws/app/src/lib/routes/home/services/onboarding.service.ts
index b6ac3baf..44e7c5e9 100644
--- a/project/ws/app/src/lib/routes/home/services/onboarding.service.ts
+++ b/project/ws/app/src/lib/routes/home/services/onboarding.service.ts
@@ -4,6 +4,7 @@ import { Observable } from 'rxjs'
const API_END_POINTS = {
CUSTOM_SELF_REGISTRATION_QR: '/apis/proxies/v8/customselfregistration',
+ REGISTERED_LINKS_LIST: '/apis/proxies/v8/customselfregistration/listallqrs',
}
@Injectable({
@@ -16,4 +17,8 @@ export class OnboardingService {
generateSelfRegistrationQRCode(request: any): Observable
{
return this.http.post(`${API_END_POINTS.CUSTOM_SELF_REGISTRATION_QR}`, request)
}
+
+ getListOfRegisteedLinks(request: any) {
+ return this.http.post(`${API_END_POINTS.REGISTERED_LINKS_LIST}`, request)
+ }
}
diff --git a/src/styles/styles.scss b/src/styles/styles.scss
index 741d65f2..cbcf300f 100644
--- a/src/styles/styles.scss
+++ b/src/styles/styles.scss
@@ -841,3 +841,7 @@ h3.shepherd-title {
.active-radio-button .mat-radio-button .mat-radio-container .mat-radio-outer-circle {
border-color: #1b4ca1 !important;
}
+
+.mat-mdc-dialog-container {
+ --mdc-dialog-container-shape: 8px
+}
\ No newline at end of file