commit
						c04b5da615
					
				
					 4 changed files with 5 additions and 8 deletions
				
			
		|  | @ -110,8 +110,6 @@ export class ToDoListComponent implements OnInit { | |||
|     tache.editing = false; | ||||
|   } | ||||
| 
 | ||||
| 
 | ||||
| 
 | ||||
|   //supprimer la tache
 | ||||
|   deleteTache(id: number) { | ||||
|     this.TodoService.deleteTacheById(id).subscribe((resp) => { | ||||
|  |  | |||
|  | @ -1,7 +1,7 @@ | |||
| <app-header></app-header> | ||||
| <app-side-bar [backgroundColor]="'#4E9E7B'"></app-side-bar> | ||||
| <h2 class="titre">To-Do-List</h2> | ||||
| <div class="row "> | ||||
| <div class="row"> | ||||
|   <div class="col menu text-center"> | ||||
|     <div class="d-flex align-items-stretch"></div> | ||||
|     <input | ||||
|  |  | |||
|  | @ -2,7 +2,6 @@ import { Component, OnInit } from '@angular/core'; | |||
| import { ToDoList } from 'src/app/models/to-do-list'; | ||||
| import { TodoService } from 'src/app/services/todo.service'; | ||||
| 
 | ||||
| 
 | ||||
| @Component({ | ||||
|   selector: 'app-page-to-do-list', | ||||
|   templateUrl: './page-to-do-list.component.html', | ||||
|  | @ -42,7 +41,7 @@ export class PageToDoListComponent implements OnInit { | |||
|         console.log(todoList); | ||||
|         window.location.reload(); //rafraîchit l'aperçu
 | ||||
|       }); | ||||
|     }else{ | ||||
|     } else { | ||||
|       window.alert('Il faut saisir du texte'); // sinon msg d'erreur
 | ||||
|     } | ||||
|   } | ||||
|  |  | |||
|  | @ -43,10 +43,10 @@ export class TodoService { | |||
|     return this.http.put(`${this.apiUrl}/taches/update/1`, tache); | ||||
|   } | ||||
| 
 | ||||
|   //ajoute ne todoList sur une team (par son id) via le token
 | ||||
|   //ajoute une todoList sur une team (par son id) via le token
 | ||||
|   addTodoByTeamId(newtodoList: TodoList): Observable<any> { | ||||
|     const teamId = this.tokenService.getCurrentTeamId(); | ||||
|     console.log(newtodoList + 'newtodoList'); | ||||
|     console.log(newtodoList); | ||||
|     return this.http.post(`${this.apiUrl}/todolist/add/${teamId}`, newtodoList); | ||||
|   } | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
	Add table
		
		Reference in a new issue
	
	 AlineRinquin
						AlineRinquin