You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/manual/docs/cmd/graph/o365group/o365group-restore.md
-3Lines changed: 0 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,9 +22,6 @@ Option|Description
22
22
23
23
## Remarks
24
24
25
-
!!! attention
26
-
This command is based on a Microsoft Graph API that is currently in preview and is subject to change once the API reached general availability.
27
-
28
25
To restore a deleted Office 365 Group, you have to first log in to the Microsoft Graph using the [graph login](../login.md) command, eg. `graph login`.
Copy file name to clipboardExpand all lines: docs/manual/docs/cmd/graph/teams/teams-channel-add.md
-3Lines changed: 0 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,9 +25,6 @@ Option|Description
25
25
26
26
## Remarks
27
27
28
-
!!! attention
29
-
This command is based on an API that is currently in preview and is subject to change once the API reached general availability.
30
-
31
28
To add a channel top Microsoft Teams team, you have to first log in to the Microsoft Graph using the [graph login](../login.md) command, eg. `graph login`.
32
29
33
30
You can only add a channel to the Microsoft Teams team you are a member of.
Copy file name to clipboardExpand all lines: docs/manual/docs/cmd/graph/teams/teams-channel-list.md
-3Lines changed: 0 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,9 +23,6 @@ Option|Description
23
23
24
24
## Remarks
25
25
26
-
!!! attention
27
-
This command is based on an API that is currently in preview and is subject to change once the API reached general availability.
28
-
29
26
To list the channels in a Microsoft Teams team, you have to first log in to the Microsoft Graph using the [graph login](../login.md) command, eg. `graph login`.
it('lists Deleted Office 365 Groups filtering on displayName',(done)=>{
1244
1244
sinon.stub(request,'get').callsFake((opts)=>{
1245
-
if(opts.url===`https://graph.microsoft.com/beta/directory/deletedItems/Microsoft.Graph.Group?$filter=groupTypes/any(c:c+eq+'Unified') and startswith(DisplayName,'Deleted')&$top=100`){
1245
+
if(opts.url===`https://graph.microsoft.com/v1.0/directory/deletedItems/Microsoft.Graph.Group?$filter=groupTypes/any(c:c+eq+'Unified') and startswith(DisplayName,'Deleted')&$top=100`){
it('lists Deleted Office 365 Groups filtering on mailNickname',(done)=>{
1333
1333
sinon.stub(request,'get').callsFake((opts)=>{
1334
-
if(opts.url===`https://graph.microsoft.com/beta/directory/deletedItems/Microsoft.Graph.Group?$filter=groupTypes/any(c:c+eq+'Unified') and startswith(MailNickname,'d_team')&$top=100`){
1334
+
if(opts.url===`https://graph.microsoft.com/v1.0/directory/deletedItems/Microsoft.Graph.Group?$filter=groupTypes/any(c:c+eq+'Unified') and startswith(MailNickname,'d_team')&$top=100`){
it('lists Deleted Office 365 Groups filtering on displayName and mailNickname',(done)=>{
1422
1422
sinon.stub(request,'get').callsFake((opts)=>{
1423
-
if(opts.url===`https://graph.microsoft.com/beta/directory/deletedItems/Microsoft.Graph.Group?$filter=groupTypes/any(c:c+eq+'Unified') and startswith(DisplayName,'Deleted') and startswith(MailNickname,'d_team')&$top=100`){
1423
+
if(opts.url===`https://graph.microsoft.com/v1.0/directory/deletedItems/Microsoft.Graph.Group?$filter=groupTypes/any(c:c+eq+'Unified') and startswith(DisplayName,'Deleted') and startswith(MailNickname,'d_team')&$top=100`){
0 commit comments