aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+about/about-peertube/about-peertube-contributors.component.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/+about/about-peertube/about-peertube-contributors.component.ts')
-rw-r--r--client/src/app/+about/about-peertube/about-peertube-contributors.component.ts19
1 files changed, 0 insertions, 19 deletions
diff --git a/client/src/app/+about/about-peertube/about-peertube-contributors.component.ts b/client/src/app/+about/about-peertube/about-peertube-contributors.component.ts
deleted file mode 100644
index dd774a4ef..000000000
--- a/client/src/app/+about/about-peertube/about-peertube-contributors.component.ts
+++ /dev/null
@@ -1,19 +0,0 @@
1import { Component, OnInit } from '@angular/core'
2import { MarkdownService } from '@app/core'
3
4@Component({
5 selector: 'my-about-peertube-contributors',
6 templateUrl: './about-peertube-contributors.component.html',
7 styleUrls: [ './about-peertube-contributors.component.scss' ]
8})
9export class AboutPeertubeContributorsComponent implements OnInit {
10 creditsHtml: string
11
12 private markdown = require('raw-loader!../../../../../CREDITS.md').default
13
14 constructor (private markdownService: MarkdownService) { }
15
16 async ngOnInit () {
17 this.creditsHtml = await this.markdownService.unsafeMarkdownToHTML(this.markdown, true)
18 }
19}