Skip to content

Commit

Permalink
Object for making grpc calls for authorized views
Browse files Browse the repository at this point in the history
  • Loading branch information
danieljbruce committed Aug 29, 2024
1 parent 4cef1fe commit 2650784
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1164,6 +1164,11 @@ export class Table extends TabularApiSurface {
);
}

/**
* Gets an Authorized View object for making authorized view grpc calls.
*
* @param {string} viewName The name for the Authorized view
*/
view(viewName: string): AuthorizedView {
return new AuthorizedView(this, viewName);
}
Expand Down

0 comments on commit 2650784

Please sign in to comment.