mirror of https://github.com/sualko/cloud_bbb
10 lines
308 B
TypeScript
10 lines
308 B
TypeScript
|
declare const OCP: any;
|
||
|
|
||
|
$(() => {
|
||
|
$('#bigbluebutton-settings form').submit(function (ev) {
|
||
|
ev.preventDefault();
|
||
|
|
||
|
OCP.AppConfig.setValue('bigbluebutton', 'api.url', this['api.url'].value);
|
||
|
OCP.AppConfig.setValue('bigbluebutton', 'api.secret', this['api.secret'].value);
|
||
|
})
|
||
|
});
|