1
0
mirror of https://github.com/pierre42100/ComunicWeb synced 2025-07-14 15:08:09 +00:00

Improved conversations rendering

This commit is contained in:
Pierre
2017-06-13 16:42:09 +02:00
parent 5e3bdad501
commit 3d1dd2cbed
6 changed files with 76 additions and 22 deletions
assets
css
components
conversations
js
common
components
conversations
user
corePage/config

@ -367,6 +367,11 @@ var ComunicWeb = {
* Given a query, search for users and return the result
*/
search: function(query, afterSearch){},
/**
* Given user IDs (in an array) the function return their names in a string
*/
getNames: function(usersID, afterNames){},
},
},

@ -49,6 +49,6 @@ function userID(){
* @param {Boolean} forceRequest Force the request to be made
* @return {Boolean} True for a success
*/
function getUsersInfos(usersID, afterGetUserInfos, forceRequest){
function getMultipleUsersInfos(usersID, afterGetUserInfos, forceRequest){
ComunicWeb.user.userInfos.getMultipleUsersInfos(usersID, afterGetUserInfos, forceRequest);
}