Page 1 of 1

Clear browser data on user logout

PostPosted: Thu Jun 15, 2023 6:41 pm
by wieslaw
Please add the possibility for configurable ResponseProperty to "Clear-Site-Data" / Clear browser data on user logout.
This is required by Honeywell to fulfill CyberSecurity requirements.

Regards,

Wieslaw

Re: Clear browser data on user logout

PostPosted: Thu Jun 15, 2023 8:59 pm
by robert.edelmann
Hello Wieslaw,

I'm not sure, do you want to delete all settings in your browser / ngDesktop-Client / smartclient?

we do this via
Code: Select all
      
var userSettings = application.getUserPropertyNames()
for (var indSettings = 0; indSettings < userSettings.length; indSettings++) {
//   application.setUserProperty(userSettings[indSettings],null);
   application.removeUserProperty(userSettings[indSettings])
}


Both versions (setUserProperty(...,null) and remove...) work here.

The only thing left are an empty userProperties-Object and settings related to tus/tus-uppy