openvidu-components: Updated testapp

pull/748/head
Carlos Santos 2022-10-19 12:30:19 +02:00
parent df128e0591
commit 1ece085349
2 changed files with 4 additions and 2 deletions

View File

@ -18,7 +18,10 @@ export class AdminDashboardComponent implements OnInit {
const resp: any = await this.restService.login(''); const resp: any = await this.restService.login('');
this.logged = true; this.logged = true;
this.recordings = resp.recordings; this.recordings = resp.recordings;
} catch (error) {} } catch (error) {
this.logged = true;
}
} }
async login(pass: string) { async login(pass: string) {

View File

@ -9,7 +9,6 @@ import { RestService } from '../services/rest.service';
}) })
export class CallComponent implements OnInit { export class CallComponent implements OnInit {
value = true;
sessionId = 'daily-call'; sessionId = 'daily-call';
tokens: TokenModel; tokens: TokenModel;