Skip to content

Instantly share code, notes, and snippets.

@Garvice
Last active April 15, 2017 19:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Garvice/e13914b5c9afb0a7e81782e9ea15767f to your computer and use it in GitHub Desktop.
Save Garvice/e13914b5c9afb0a7e81782e9ea15767f to your computer and use it in GitHub Desktop.
addTodo(newTodoName: string) {
const newTodo = { toBottom: true, cells: [{ columnId: TASK_NAME_COLUMN_ID, value: newTodoName }] };
this.http.post(SMARTSHEET_URL + '/sheets/' + SHEET_ID + '/rows', newTodo,
{headers: this.getHeaders()});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment