(id)
| 258 | } |
| 259 | |
| 260 | export function changeActiveProject(id) { |
| 261 | return (dispatch) => { |
| 262 | dispatch({ type: CHANGE_ACTIVE_PROJECT, id }); |
| 263 | return new Promise(resolve => resolve("Changed")); |
| 264 | }; |
| 265 | } |
| 266 | |
| 267 | export function generateDashboard(projectId, data, template) { |
| 268 | const token = cookie.load("brewToken"); |
no test coverage detected