mirror of https://github.com/OpenVidu/openvidu.git
21 lines
552 B
TypeScript
21 lines
552 B
TypeScript
![]() |
import { Component, OnInit } from '@angular/core';
|
||
|
import { PanelType } from '../../../models/panel.model';
|
||
|
import { PanelService } from '../../../services/panel/panel.service';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'ov-activities-panel',
|
||
|
templateUrl: './activities-panel.component.html',
|
||
|
styleUrls: ['./activities-panel.component.css']
|
||
|
})
|
||
|
export class ActivitiesPanelComponent implements OnInit {
|
||
|
constructor(private panelService: PanelService) {}
|
||
|
|
||
|
ngOnInit(): void {}
|
||
|
|
||
|
ngOnDestroy() {}
|
||
|
|
||
|
close() {
|
||
|
this.panelService.togglePanel(PanelType.ACTIVITIES);
|
||
|
}
|
||
|
}
|