In the master branch of our QUIQQER Core you are now able to find some new improvements and features.
QUIQQER is a modular based management system.
Modular design. Comfortable backend. Can be implemented quickly. The all-round carefree Enterprise Content Management System.
A complete history changelog can you find [here]
Since there have been some simplified API changes, we present these here in detail once again
It is now easier to open a user panel:
require(['utils/Panels'], function (PanelUtils) {
PanelUtils.openUserPanel(USER_ID);
});
Often there is a problem to check the current authentication status of a user.
For this we have implemented a simple call, this also updates user messages.
require(['QUIQQER'], function(QUIQQER) {
// without callback
QUIQQER.isAuthenticated();
// with calback
QUIQQER.isAuthenticated().then(function() {
// your callback
});
});
Thanks for reading
Hen and Peat, for PCSG Developers