Changelog
2023
2023-07-25 Updates

1. Change in access to Version Control

The access to Version Control has been changed. From this version, you can access Version Control from next to the page name in the header.

2. Added groups to querierCurrentUser

You can now reference the permission groups that the logged-in user belongs to as follows:

{
 {
   querierCurrentUser.groups;
 }
}

This allows for handling like the following:

{
 {
   querierCurrentUser.groups.map((d) => d.name).includes("admin");
 }
}