ui : members with user.groups

This commit is contained in:
simon louvet
2018-11-25 17:30:11 +01:00
parent 1d0e1ea90b
commit 1a3c36ef4d
6 changed files with 32 additions and 11 deletions

View File

@ -149,4 +149,17 @@ document.addEventListener('WebComponentsReady', function(event) {
}
customElements.define('hdapp-hyperlink', HDAppHyperlink);
class HDAppLinkMore extends SIBWidget {
get template() {
const id = uniqID();
console.warn('HDAppLinkMore'this);
return `
${this.label}
${this.name}
${this.escapedValue}
`;
}
}
customElements.define('hdapp-link-more', HDAppLinkMore);
});