read ccli license from global config

This commit is contained in:
2020-04-25 22:49:44 +02:00
committed by smuddy
parent 4c5a8c972c
commit b773df88a1
14 changed files with 79 additions and 14 deletions

View File

@@ -1,5 +1,6 @@
import {Component, Input} from '@angular/core';
import {Song} from '../../../songs/services/song';
import {Config} from '../../../../services/config';
@Component({
selector: 'app-legal',
@@ -8,4 +9,5 @@ import {Song} from '../../../songs/services/song';
})
export class LegalComponent {
@Input() public song: Song;
@Input() public config: Config;
}