Merge pull request #5124 from capilkey/update-air-2.1

Include missing classes in AIR client
This commit is contained in:
Chad Pilkey 2018-02-08 16:02:32 -05:00 committed by GitHub
commit 343c52a8a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,15 @@
package org.bigbluebutton.lib.chat.commands {
import org.bigbluebutton.lib.chat.services.IChatMessageService;
import robotlegs.bender.bundles.mvcs.Command;
public class RequestWelcomeMessageCommand extends Command {
[Inject]
public var chatService:IChatMessageService;
override public function execute():void {
chatService.sendWelcomeMessage();
}
}
}

View File

@ -0,0 +1,9 @@
package org.bigbluebutton.lib.chat.commands {
import org.osflash.signals.Signal;
public class RequestWelcomeMessageSignal extends Signal {
public function RequestWelcomeMessageSignal() {
super();
}
}
}