[U] Update user type and usage in Http-utils.js
This commit is contained in:
@@ -1,13 +1,14 @@
|
|||||||
import Constants from '@/constants';
|
import Constants from '@/constants';
|
||||||
|
import LoginUser from '@/logic/login-user';
|
||||||
|
|
||||||
export class HttpUtils
|
export class HttpUtils
|
||||||
{
|
{
|
||||||
public token: string = '';
|
public user: LoginUser;
|
||||||
|
|
||||||
public post(node: string, body: any): Promise<any>
|
public post(node: string, body: any): Promise<any>
|
||||||
{
|
{
|
||||||
// Add token
|
// Add token
|
||||||
if (this.token != '') body['token'] = this.token;
|
if (this.user != null) body['token'] = this.user.token;
|
||||||
|
|
||||||
// Create promise
|
// Create promise
|
||||||
return new Promise<any>((resolve, reject) =>
|
return new Promise<any>((resolve, reject) =>
|
||||||
|
|||||||
Reference in New Issue
Block a user