]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/admin/friends/friends.component.ts
Do not wait the make friends process ends to send a response to the
[github/Chocobozzz/PeerTube.git] / client / src / app / admin / friends / friends.component.ts
CommitLineData
e2f555ca
C
1import { Component } from '@angular/core';
2import { ROUTER_DIRECTIVES } from '@angular/router';
3
4import { FriendService } from './shared';
5
6@Component({
7 template: '<router-outlet></router-outlet>',
8 directives: [ ROUTER_DIRECTIVES ],
9 providers: [ FriendService ]
10})
11
12export class FriendsComponent {
13}