bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/user-list/container.jsx

15 lines
567 B
React
Raw Normal View History

2017-07-12 21:18:26 +08:00
import React from 'react';
import { withTracker } from 'meteor/react-meteor-data';
import getFromUserSettings from '/imports/ui/services/users-settings';
2021-05-18 04:25:07 +08:00
import Service from '/imports/ui/components/user-list/service';
2017-07-12 21:18:26 +08:00
import UserList from './component';
2016-05-20 02:22:56 +08:00
2021-08-05 12:22:07 +08:00
const UserListContainer = (props) => <UserList {...props} />;
2016-05-20 02:22:56 +08:00
2021-08-05 12:22:07 +08:00
export default withTracker(({ compact }) => (
{
2021-05-18 04:25:07 +08:00
CustomLogoUrl: Service.getCustomLogoUrl(),
showBranding: getFromUserSettings('bbb_display_branding_area', Meteor.settings.public.app.branding.displayBrandingArea),
2021-08-05 12:22:07 +08:00
}
))(UserListContainer);