mirror of
https://github.com/PhoenixTwoFive/karaoqueue.git
synced 2025-07-13 05:21:42 +02:00
Add authentication and authorization
This commit is contained in:
@ -0,0 +1,5 @@
|
||||
interface DataStoredInToken {
|
||||
_id: string;
|
||||
}
|
||||
|
||||
export default DataStoredInToken;
|
@ -0,0 +1,6 @@
|
||||
interface User {
|
||||
username: string;
|
||||
password: string;
|
||||
}
|
||||
|
||||
export default User;
|
Reference in New Issue
Block a user