SetApp sets the application reference.
(app *App)
| 97 | |
| 98 | // SetApp sets the application reference. |
| 99 | func (tl *TasksList) SetApp(app *App) { |
| 100 | tl.app = app |
| 101 | tl.updateActiveTableTitle() |
| 102 | } |
| 103 | |
| 104 | // SetTasks updates the tasks list with new data. |
| 105 | func (tl *TasksList) SetTasks(tasks []*api.ClusterTask) { |
nothing calls this directly
no test coverage detected