Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
bigbluebutton
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Extensions
bigbluebutton
Commits
9b8856b7
Commit
9b8856b7
authored
5 days ago
by
jaapjansma
Browse files
Options
Downloads
Plain Diff
Merge branch 'join-userdata' into 'main'
Allow setting userdata in Join API. See merge request
!1
parents
e84a57ac
16ff3ee0
Branches
main
Tags
1.0.5
1 merge request
!1
Allow setting userdata in Join API.
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Civi/Api4/Action/BigBlueButton/Join.php
+29
-0
29 additions, 0 deletions
Civi/Api4/Action/BigBlueButton/Join.php
info.xml
+2
-2
2 additions, 2 deletions
info.xml
with
31 additions
and
2 deletions
Civi/Api4/Action/BigBlueButton/Join.php
+
29
−
0
View file @
9b8856b7
...
...
@@ -167,4 +167,33 @@ class Join extends AbstractBBBAPi {
*/
protected
$enforceLayout
;
/**
* @var array<string,mixed>
*/
protected
$_userdata
=
[];
/**
* @param array<string,mixed>
*/
public
function
setUserdata
(
array
$userdata
):
self
{
$this
->
_userdata
=
$userdata
;
return
$this
;
}
/**
* {@inheritDoc}
*/
public
function
getParams
()
{
$params
=
parent
::
getParams
();
// Add userdata
foreach
(
$this
->
_userdata
as
$key
=>
$value
)
{
$params
[
sprintf
(
'userdata-%s'
,
$key
)]
=
$value
;
}
return
$params
;
}
}
This diff is collapsed.
Click to expand it.
info.xml
+
2
−
2
View file @
9b8856b7
...
...
@@ -13,8 +13,8 @@
<url
desc=
"Documentation"
>
https://civicrm.org/extensions/big-blue-button-connector
</url>
<url
desc=
"Licensing"
>
http://www.gnu.org/licenses/agpl-3.0.html
</url>
</urls>
<releaseDate>
2025-0
3
-1
4
</releaseDate>
<version>
1.0.
4
</version>
<releaseDate>
2025-0
4
-1
1
</releaseDate>
<version>
1.0.
5
</version>
<develStage>
alpha
</develStage>
<compatibility>
<ver>
5.40
</ver>
...
...
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