Add placeholder components to be worked on
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import { ClientConfig } from '../models/ClientConfig';
|
||||
import { ClientConfig } from '../interfaces/client-config.model';
|
||||
const ENDPOINT = `http://localhost:8080/api/config`;
|
||||
|
||||
class ClientConfigService {
|
||||
@@ -1,4 +1,4 @@
|
||||
import ServerStatus from '../models/ServerStatus';
|
||||
import ServerStatus from '../interfaces/server-status.model';
|
||||
|
||||
const ENDPOINT = `http://localhost:8080/api/status`;
|
||||
|
||||
@@ -15,7 +15,7 @@ class UserService {
|
||||
},
|
||||
body: JSON.stringify({ displayName: username }),
|
||||
};
|
||||
|
||||
|
||||
try {
|
||||
const response = await fetch(URL_CHAT_REGISTRATION, options);
|
||||
const result = await response.json();
|
||||
@@ -26,4 +26,4 @@ class UserService {
|
||||
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user