diff --git a/apps/client/src/app/components/access-table/access-table.component.html b/apps/client/src/app/components/access-table/access-table.component.html new file mode 100644 index 000000000..44aee1644 --- /dev/null +++ b/apps/client/src/app/components/access-table/access-table.component.html @@ -0,0 +1,84 @@ +
Alias | ++ {{ element.alias }} + | +Grantee | ++ {{ element.grantee }} + | +Permission | +
+
+ @if (element.permissions.includes('READ')) {
+
+ |
+ Details | +
+ @if (element.type === 'PUBLIC') {
+
+ @if (user?.settings?.isExperimentalFeatures) {
+
+
+ }
+ }
+ GET {{ baseUrl }}/api/v1/public/{{
+ element.id
+ }}/portfolio
+ |
+ + + |
+
+ + } + + |
+
---|