2017-07-12 21:18:26 +08:00
|
|
|
import React from 'react';
|
2018-01-08 12:44:42 +08:00
|
|
|
import { withTracker } from 'meteor/react-meteor-data';
|
2018-09-14 02:09:30 +08:00
|
|
|
import getFromUserSettings from '/imports/ui/services/users-settings';
|
2017-07-12 21:18:26 +08:00
|
|
|
import UserList from './component';
|
2024-06-06 21:50:03 +08:00
|
|
|
import { useStorageKey } from '../../services/storage/hooks';
|
2016-05-20 02:22:56 +08:00
|
|
|
|
2024-06-06 21:50:03 +08:00
|
|
|
const UserListContainer = (props) => {
|
|
|
|
const CustomLogoUrl = useStorageKey('CustomLogoUrl', 'session');
|
|
|
|
return (
|
|
|
|
<UserList CustomLogoUrl={CustomLogoUrl} {...props} />
|
|
|
|
);
|
|
|
|
};
|
2016-05-20 02:22:56 +08:00
|
|
|
|
2021-08-05 12:22:07 +08:00
|
|
|
export default withTracker(({ compact }) => (
|
|
|
|
{
|
2024-03-07 01:28:18 +08:00
|
|
|
showBranding: getFromUserSettings('bbb_display_branding_area', window.meetingClientSettings.public.app.branding.displayBrandingArea),
|
2021-08-05 12:22:07 +08:00
|
|
|
}
|
|
|
|
))(UserListContainer);
|