Skip to content

Commit

Permalink
Added provider for videoconf persistent chat tests (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
pierre-lehnen-rc authored Jul 22, 2024
1 parent 8ddc2fa commit dab1ec6
Show file tree
Hide file tree
Showing 8 changed files with 535 additions and 50 deletions.
4 changes: 4 additions & 0 deletions AppsRocketChatTesterApp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import { OpenContextualBarSlashcommand } from "./slashcommands/OpenContextualBar
import { TestArgumentsSlashcommand } from "./slashcommands/TestArgumentsSlashcommand";
import { TestSlashcommand } from "./slashcommands/TestSlashcommand";
import { TestVideoConfProvider } from "./videoConfProviders/TestVideoConfProvider";
import { PersistentChatVideoConfProvider } from "./videoConfProviders/PersistentChatVideoConfProvider";
import { UnconfiguredVideoConfProvider } from "./videoConfProviders/UnconfiguredVideoConfProvider";
import { OpenModalSlashcommand } from "./slashcommands/OpenModalSlashcommand";
import { ModalViewSubmitHandler } from "./handlers/ModalHandlers";
Expand Down Expand Up @@ -56,6 +57,9 @@ export class RocketChatTester extends App {
configuration.videoConfProviders.provideVideoConfProvider(
new TestVideoConfProvider()
);
configuration.videoConfProviders.provideVideoConfProvider(
new PersistentChatVideoConfProvider()
);
configuration.videoConfProviders.provideVideoConfProvider(
new UnconfiguredVideoConfProvider()
);
Expand Down
4 changes: 2 additions & 2 deletions app.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "bc4dd4a1-bf9b-408e-83a4-aba7eba0bf02",
"version": "0.1.0",
"requiredApiVersion": "^1.42.2",
"version": "0.1.1",
"requiredApiVersion": "^1.44.0",
"iconFile": "icon.png",
"author": {
"name": "Rocket.Chat",
Expand Down
Binary file added dist/appsrocketchattester_0.1.1.zip
Binary file not shown.
Loading

0 comments on commit dab1ec6

Please sign in to comment.