Skip to content

Commit 4b61341

Browse files
authored
Update site-design-scoping.md (SharePoint#7271)
- Removed all instances of "site design" except when it appears in a script - Renamed article for clarity
1 parent 1e21012 commit 4b61341

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

docs/declarative-customization/site-design-scoping.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
---
2-
title: Scoping access to SharePoint site designs
3-
description: Set scope on SharePoint site designs to control who can view and access them.
4-
ms.date: 04/20/2018
2+
title: Select audiences for SharePoint site templates
3+
description: Determine which audiences can access certain site templates.
4+
ms.date: 08/23/2021
55
localization_priority: Priority
66
---
77

8-
# Scoping access to site designs
8+
# Scoping access to site templates
99

10-
Site designs are available to everyone by default. You can also scope site designs so that they are only available to specific users or groups. For example, the accounting department may have specific site designs they use, but it may not make sense to share those site designs with everyone.
10+
Site templates are available to everyone by default. You can also scope site templates so that they are only available to specific users or groups. For example, the accounting department may have specific site designs they use, but it may not make sense to share those site templates with everyone.
1111

12-
This article explains how you can control which users and groups can see specific site designs.
12+
This article explains how you can control which users and groups can see specific site templates.
1313

14-
## Grant rights to a site design
14+
## Grant rights to a site template
1515

16-
When a site design is first created, it is available to everyone. You can grant **View** rights to the site design. After rights are granted, only the users or groups (principals) specified have access. You can continue granting rights to more principals with subsequent API calls.
16+
When a site template is first created, it is available to everyone. You can grant **View** rights to the site template. After rights are granted, only the users or groups (principals) specified have access. You can continue granting rights to more principals with subsequent API calls.
1717

1818
> [!NOTE]
1919
> Scoping is currently only available for mail-enabled security groups and users. We are planning to provide support for Microsoft 365 groups in the future.
2020
2121
## Grant rights to security groups
2222

23-
The following example shows how to scope an existing site design so that only the mail-enabled security group **accounting** can view and use the site design.
23+
The following example shows how to scope an existing site template so that only the mail-enabled security group **accounting** can view and use the site template.
2424

2525
```powershell
2626
Grant-SPOSiteDesignRights `
@@ -31,7 +31,7 @@ Grant-SPOSiteDesignRights `
3131

3232
<br/>
3333

34-
You might want to create a new site design and grant rights at the same time, as shown in the next example.
34+
You might want to create a new site template and grant rights at the same time, as shown in the next example.
3535

3636
```powershell
3737
Add-SPOSiteDesign `
@@ -47,7 +47,7 @@ Add-SPOSiteDesign `
4747

4848
## Grant rights to users
4949

50-
The following example shows how to grant view rights on a site design to Nestor (a user at the fictional Contoso site).
50+
The following example shows how to grant view rights on a site template to Nestor (a user at the fictional Contoso site).
5151

5252
```powershell
5353
PS C:\> Grant-SPOSiteDesignRights `
@@ -56,7 +56,7 @@ PS C:\> Grant-SPOSiteDesignRights `
5656
-Rights View
5757
```
5858

59-
## View rights assigned to a site design
59+
## View rights assigned to a site template
6060

6161
To view rights, use the **Get-SPOSiteDesignRights** cmdlet. The following example shows how to use this cmdlet and a response in the case where only Nestor has view rights.
6262

@@ -70,16 +70,16 @@ DisplayName PrincipalName Rights
7070
Nestor Wilke i:0#.f|membership|[email protected] View
7171
```
7272

73-
## Revoke rights from a site design
73+
## Revoke rights from a site template
7474

75-
You can revoke rights for any principal. If you revoke view rights for all principles, the site design will again be available to everyone.
75+
You can revoke rights for any principal. If you revoke view rights for all principles, the site template will again be available to everyone.
7676

7777
The following example revokes access for the accounting mail-enabled security group and Nestor.
7878

7979
```powershell
8080
Revoke-SPOSiteDesignRights `
8181
-Identity db752673-18fd-44db-865a-aa3e0b28698e `
82-
-Principals ("[email protected]","nestorw@spdfcontosodemo2.onmicrosoft.com") `
82+
-Principals ("[email protected]","nestorw@contoso.onmicrosoft.com") `
8383
```
8484

8585
## See also

0 commit comments

Comments
 (0)