Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Teams Tab Docs #2800

Merged
merged 1 commit into from
Oct 13, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 29 additions & 1 deletion docs/graph/teams.md
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ channels.getById('19:[email protected]').tabs.getByI

```

## Add a new Tab
## Add a new Tab to Channel

```TypeScript
import { graphfi } from "@pnp/graph";
Expand All @@ -286,6 +286,34 @@ channels.getById('19:[email protected]').tabs.add('T

```

## Update a Tab

```TypeScript
import { graphfi } from "@pnp/graph";
import "@pnp/graph/teams";

const graph = graphfi(...);

const tab = await graph.teams.getById('3531f3fb-f9ee-4f43-982a-6c90d8226528').
channels.getById('19:[email protected]').tabs.getById('Id').update({
displayName: "New tab name"
});

```

## Remove a Tab from channel

```TypeScript
import { graphfi } from "@pnp/graph";
import "@pnp/graph/teams";

const graph = graphfi(...);

const tab = await graph.teams.getById('3531f3fb-f9ee-4f43-982a-6c90d8226528').
channels.getById('19:[email protected]').tabs.getById('Id').delete();

```

## Team Membership

Get the members and/or owners of a group.
Expand Down
Loading