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,9 +1,8 @@
import {ChordMode} from '../../widget-modules/components/song-text/song-text.component';
import {roles} from './roles';
export interface User {
id: string;
name: string;
role: roles;
role: string;
chordMode: ChordMode
}