adding skeleton of autofill functions

This commit is contained in:
kakwa 2015-07-08 00:42:53 +02:00
parent 3d399504a7
commit 2d06e14d63
1 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,28 @@
/*
* Licensed under the MIT public license.
*
* Part of LdapCherry.
*
* Functions to autofill form fields from other fields.
*
*/
function lcUid(firstname, lastname){
return 'test';
}
function lcDisplayName(firstname, lastname){
return 'test';
}
function lcMail(firstname, lastname, domain){
return 'test@test';
}
function lcUidNumber(firstname, lastname){
return 42;
}
function lcHomeDir(firstname, lastname){
return '/home/test';
}