Browse Source
Add screen sharing feature during video conferencing
Add screen sharing feature during video conferencing
Fix External Services discovery, refresh the STUN/TURN at each sessions Fix jingleSid handing and return proper errors for unknown Jingle session IQspull/933/head
17 changed files with 255 additions and 126 deletions
-
8app/Info.php
-
14app/Session.php
-
1app/widgets/CommunityAffiliations/communityaffiliations.js
-
19app/widgets/Presence/Presence.php
-
1app/widgets/Upload/upload.js
-
112app/widgets/Visio/Visio.php
-
9app/widgets/Visio/_visio_dialog.tpl
-
2app/widgets/Visio/locales.ini
-
14app/widgets/Visio/visio.css
-
57app/widgets/Visio/visio.js
-
8app/widgets/Visio/visio.tpl
-
46app/widgets/Visio/visio_utils.js
-
21database/migrations/20200422151151_remove_external_services_to_sessions_table.php
-
13lib/moxl/src/Moxl/Stanza/Jingle.php
-
1lib/moxl/src/Moxl/Utils.php
-
5lib/moxl/src/Moxl/Xec/Action/ExternalServices/Get.php
-
50lib/moxl/src/Moxl/Xec/Payload/Jingle.php
@ -0,0 +1,21 @@ |
|||
<?php |
|||
|
|||
use Movim\Migration; |
|||
use Illuminate\Database\Schema\Blueprint; |
|||
|
|||
class RemoveExternalServicesToSessionsTable extends Migration |
|||
{ |
|||
public function up() |
|||
{ |
|||
$this->schema->table('sessions', function (Blueprint $table) { |
|||
$table->dropColumn('externalservices'); |
|||
}); |
|||
} |
|||
|
|||
public function down() |
|||
{ |
|||
$this->schema->table('sessions', function (Blueprint $table) { |
|||
$table->text('externalservices')->nullable(); |
|||
}); |
|||
} |
|||
} |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue