Added page for forbbiden access to signed out users.

This commit is contained in:
Pierre
2017-12-17 18:48:02 +01:00
parent 4cc00b7868
commit ad6d3ed706
6 changed files with 152 additions and 17 deletions

View File

@ -390,6 +390,11 @@ var ComunicWeb = {
*/
getNames: function(usersID, afterNames){},
/**
* Get advanced informations about a user
*/
getAdvancedInfos: function(userID, callback){},
/**
* Get the user ID specified by its folder name
*/
@ -667,8 +672,25 @@ var ComunicWeb = {
*/
openUserPage: function(id, params, target){},
/**
* Display a user page
*/
displayUserPage: function(infos, params, target){},
},
/**
* Page with access forbidden
*/
accessForbidden: {
/**
* Display the page for user with forbidden access
*/
display: function(id, params, target){}
}
},
/**