mirror of
https://github.com/pierre42100/ComunicWeb
synced 2025-07-14 15:08:09 +00:00
Improved conversations rendering
This commit is contained in:
assets
css
components
conversations
js
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);
|
||||
}
|
Reference in New Issue
Block a user