generated from bigbluebutton/plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ref: Update template to use the new plugin manifest structure (#10)
* [manifest-structure] - added manifest structure to template * Update README.md Co-authored-by: Anton Georgiev <[email protected]> --------- Co-authored-by: Anton Georgiev <[email protected]>
- Loading branch information
1 parent
1a8d354
commit 3eba852
Showing
7 changed files
with
10,380 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
node_modules | ||
dist | ||
dist-tsc | ||
debian/.debhelper/ | ||
debian/debhelper-build-stamp | ||
debian/files | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"requiredSdkVersion": "~0.0.59", | ||
"name": "<plugin-name>", | ||
"javascriptEntrypointUrl": "<plugin-name>.js", | ||
"localesBaseUrl": "https://cdn.dominio.com/pluginabc/", | ||
"eventPersistence": { | ||
"isEnabled": true, | ||
"maximumPayloadSizeInBytes": 1024, | ||
"rateLimiting": { | ||
"messagesAllowedPerSecond": 10, | ||
"messagesAllowedPerMinute": 20 | ||
} | ||
}, | ||
"dataChannels": [ | ||
{ | ||
"name": "<data-channel-name>", | ||
"pushPermission": ["moderator"], | ||
"replaceOrDeletePermission": ["creator", "moderator"] | ||
} | ||
], | ||
"remoteDataSources": [ | ||
{ | ||
"name": "<remote-data-source-name>", | ||
"url": "${meta_remote-data-uri}", | ||
"fetchMode": "onMeetingCreate", | ||
"permissions": ["moderator"] | ||
} | ||
] | ||
} |
Oops, something went wrong.