simple role management

This commit is contained in:
2020-04-25 14:53:35 +02:00
committed by smuddy
parent 732353f5bd
commit e17b8acc9c
29 changed files with 219 additions and 31 deletions

View File

@@ -0,0 +1,8 @@
import {ChordMode} from '../../widget-modules/components/song-text/song-text.component';
export interface User {
id: string;
name: string;
role: 'admin';
chordMode: ChordMode
}