Posts: 133
Threads: 28
Joined: May 2016
Reputation:
3
Hi,
I need for a project a PIN Protection on an internal link. Is this possible?
I mean the same dialog like the protection on an KNX Object in Visu.
I use a spaceLYnk with 2.0.1 Fw.
thx forwards
Posts: 7764
Threads: 42
Joined: Jun 2015
Reputation:
447
If you want to protect a certain plan or level you can just set PIN in Vis. structure
Posts: 165
Threads: 82
Joined: Jul 2015
Reputation:
1
Hi there , i need this function for my link to certain page but i dont want tu use PIN in VisStructure. Can you update Javascript for a page ID instead of external link.
$(function(){
$('.mylink').off('vclick').on('vclick', function(e) {
showPincode('1234', {
callback: function() {
window.location = 'https://forum.logicmachine.net/';
}
});
return $.stopEvent(e);
});
});
Posts: 7764
Threads: 42
Joined: Jun 2015
Reputation:
447
This example will not work with the latest firmware. For security reasons PIN check is done on the server side so a custom check like this is not possible anymore.