Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
fairblue
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hosting
chat
fairblue
Commits
66bf8100
Commit
66bf8100
authored
6 years ago
by
Tainan Felipe
Browse files
Options
Downloads
Patches
Plain Diff
Fix countdown doesn't appearing in breakout room
parent
e2d11f1b
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
bigbluebutton-html5/imports/api/breakouts/server/publishers.js
+6
-1
6 additions, 1 deletion
...uebutton-html5/imports/api/breakouts/server/publishers.js
bigbluebutton-html5/imports/startup/client/base.jsx
+6
-4
6 additions, 4 deletions
bigbluebutton-html5/imports/startup/client/base.jsx
with
12 additions
and
5 deletions
bigbluebutton-html5/imports/api/breakouts/server/publishers.js
+
6
−
1
View file @
66bf8100
...
@@ -8,10 +8,15 @@ function breakouts(credentials, moderator) {
...
@@ -8,10 +8,15 @@ function breakouts(credentials, moderator) {
requesterUserId
,
requesterUserId
,
}
=
credentials
;
}
=
credentials
;
Logger
.
info
(
`Publishing Breakouts for
${
meetingId
}
${
requesterUserId
}
`
);
Logger
.
info
(
`Publishing Breakouts for
${
meetingId
}
${
requesterUserId
}
`
);
if
(
moderator
)
{
if
(
moderator
)
{
const
presenterSelector
=
{
const
presenterSelector
=
{
parentMeetingId
:
meetingId
,
$or
:
[
{
parentMeetingId
:
meetingId
},
{
breakoutId
:
meetingId
},
],
};
};
return
Breakouts
.
find
(
presenterSelector
);
return
Breakouts
.
find
(
presenterSelector
);
}
}
...
...
This diff is collapsed.
Click to expand it.
bigbluebutton-html5/imports/startup/client/base.jsx
+
6
−
4
View file @
66bf8100
...
@@ -47,9 +47,9 @@ class Base extends Component {
...
@@ -47,9 +47,9 @@ class Base extends Component {
componentWillUpdate
()
{
componentWillUpdate
()
{
const
{
approved
}
=
this
.
props
;
const
{
approved
}
=
this
.
props
;
const
isL
oading
=
this
.
state
.
loading
;
const
{
l
oading
}
=
this
.
state
;
if
(
approved
&&
isL
oading
)
this
.
updateLoadingState
(
false
);
if
(
approved
&&
l
oading
)
this
.
updateLoadingState
(
false
);
}
}
updateLoadingState
(
loading
=
false
)
{
updateLoadingState
(
loading
=
false
)
{
...
@@ -131,7 +131,8 @@ const BaseContainer = withTracker(() => {
...
@@ -131,7 +131,8 @@ const BaseContainer = withTracker(() => {
},
},
};
};
const
subscriptionsHandlers
=
SUBSCRIPTIONS_NAME
.
map
(
name
=>
Meteor
.
subscribe
(
name
,
credentials
,
subscriptionErrorHandler
));
const
subscriptionsHandlers
=
SUBSCRIPTIONS_NAME
.
map
(
name
=>
Meteor
.
subscribe
(
name
,
credentials
,
subscriptionErrorHandler
));
const
chats
=
GroupChat
.
find
({
const
chats
=
GroupChat
.
find
({
$or
:
[
$or
:
[
...
@@ -147,7 +148,8 @@ const BaseContainer = withTracker(() => {
...
@@ -147,7 +148,8 @@ const BaseContainer = withTracker(() => {
const
chatIds
=
chats
.
map
(
chat
=>
chat
.
chatId
);
const
chatIds
=
chats
.
map
(
chat
=>
chat
.
chatId
);
const
groupChatMessageHandler
=
Meteor
.
subscribe
(
'
group-chat-msg
'
,
credentials
,
chatIds
,
subscriptionErrorHandler
);
const
groupChatMessageHandler
=
Meteor
.
subscribe
(
'
group-chat-msg
'
,
credentials
,
chatIds
,
subscriptionErrorHandler
);
const
User
=
Users
.
findOne
({
intId
:
credentials
.
externUserID
});
const
User
=
Users
.
findOne
({
intId
:
credentials
.
requesterUserId
});
if
(
User
)
{
if
(
User
)
{
const
mappedUser
=
mapUser
(
User
);
const
mappedUser
=
mapUser
(
User
);
breakoutRoomSubscriptionHandler
=
Meteor
.
subscribe
(
'
breakouts
'
,
credentials
,
mappedUser
.
isModerator
,
subscriptionErrorHandler
);
breakoutRoomSubscriptionHandler
=
Meteor
.
subscribe
(
'
breakouts
'
,
credentials
,
mappedUser
.
isModerator
,
subscriptionErrorHandler
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment