formation hace 3 años
padre
commit
788ff6e87c
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      angular-client/src/app/services/users.service.ts

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

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