Browse Source

build auto

formation 3 years ago
parent
commit
066f6debb8
1 changed files with 2 additions and 0 deletions
  1. 2 0
      angular-client/src/app/services/users.service.ts

+ 2 - 0
angular-client/src/app/services/users.service.ts

@@ -34,6 +34,8 @@ getOneUser(id: string): Observable <User> {
 
 // edit user
 editOneUser(id: string, body: { isActive: boolean; }): Observable <User> {
+   debugger;
+   console.log("url ========",this.apiUrl);
   return this.http.patch<User>(`${this.apiUrl}/api/users/${id}`, body);
 }