Removing author from publish notebook payload (#966)

* removing author from publish payload

* fixed failing tests
This commit is contained in:
Srinath Narayanan
2021-08-15 00:45:30 -07:00
committed by GitHub
parent 6e55e397b3
commit 4110be10bd
3 changed files with 1 additions and 7 deletions

View File

@@ -61,7 +61,6 @@ export interface IPublishNotebookRequest {
name: string;
description: string;
tags: string[];
author: string;
thumbnailUrl: string;
content: any;
addLinkToNotebookViewer: boolean;
@@ -359,7 +358,6 @@ export class JunoClient {
name: string,
description: string,
tags: string[],
author: string,
thumbnailUrl: string,
content: string
): Promise<IJunoResponse<IGalleryItem>> {
@@ -370,7 +368,6 @@ export class JunoClient {
name,
description,
tags,
author,
thumbnailUrl,
content: JSON.parse(content),
addLinkToNotebookViewer: true,