Failed to execute template. Cause: [Access denied when checking [script] access to [xwiki:Collaboratory.UX.HbpSkin.WebHome] for user [xwiki:XWiki.Admin]]. Click on this message for details.

Membership - HBP Wiki

IAM21 instance, do not create collab nor modify a team, your changes will be lost


Changes for page Membership

Last modified by superadmin on 2022/06/07 18:01

From version 7.1
edited by bougault
on 2022/03/22 08:38
Change comment: There is no comment for this version
To version 6.25
edited by bougault
on 2022/03/21 17:50
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -5,8 +5,7 @@
5 5   'doc.date': {}
6 6  })
7 7  #set ($options = {
8 - ##'className': 'Collaboratory.Apps.Membership.MembershipRequest.Code.MembershipRequestClass',
9 - 'url': '/getMembershipRequests'
8 + 'className': 'Collaboratory.Apps.Membership.MembershipRequest.Code.MembershipRequestClass',
10 10   'translationPrefix': 'membershiprequest.livetable.',
11 11   'tagCloud': true,
12 12   'rowCount': 15,
XWiki.JavaScriptExtension[0]
Code
... ... @@ -2,8 +2,11 @@
2 2   navigator.serviceWorker.register('/bin/jsx/LiveTableServiceWorker?minify=false', { 'scope': '/bin/view/Membership'})
3 3   .then((reg) => {
4 4   reg.update();
5 + // registration worked
6 + console.log('Registration succeeded. Scope is ' + reg.scope);
5 5   }).catch((error) => {
6 - console.error('Registration failed with ' + error);
8 + // registration failed
9 + console.log('Registration failed with ' + error);
7 7   });
8 8  }
9 9