File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
docs/declarative-customization Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -854,7 +854,7 @@ Use the `associateExtension` action to register a deployed SharePoint Framework
854
854
- ` clientSideComponentProperties ` : An optional parameter, which can be used to provide properties for the extension instance.
855
855
- ` registrationId ` : An optional parameter, which indicates the type of the list the extension is associated to (if its a list extension).
856
856
- ` registrationType ` : An optional parameter, which should be specified if the extension is associated with a list.
857
- - ` scope ` : Indicates whether the extension is associated with a Web or a Site.
857
+ - ` scope ` : Indicates whether the extension is associated with a ` Web ` or a ` Site ` .
858
858
859
859
#### Example
860
860
@@ -870,23 +870,23 @@ Use the `associateExtension` action to register a deployed SharePoint Framework
870
870
871
871
## Activate a Feature
872
872
873
- Use the ` activateSPFeature ` action to activate a web scoped feature.
874
-
875
- > [ !NOTE]
876
- > Site scoped features can't be activated through Site Designs at this time.
873
+ Use the ` activateSPFeature ` action to activate a SharePoint feature.
877
874
878
875
#### JSON values
879
876
880
- - ` featureId ` : The ID of the web scoped feature to activate.
877
+ - ` featureId ` : The ID of the feature to activate (GUID).
878
+ - ` scope ` : Indicates whether the feature is associated with a ` web ` or a ` site ` .
879
+
881
880
882
881
#### Example
883
882
884
- To enable the web scoped feature, which allows for Events Lists to be created (feature ID 00bfea71-ec85-4903-972d-ebe475780106):
883
+ To enable the web scoped feature that allows for Events Lists to be created (feature ID 00bfea71-ec85-4903-972d-ebe475780106):
885
884
886
885
``` json
887
886
{
888
887
"verb" : " activateSPFeature" ,
889
- "featureId" : " 00bfea71-ec85-4903-972d-ebe475780106"
888
+ "featureId" : " 00bfea71-ec85-4903-972d-ebe475780106" ,
889
+ "scope" : " web"
890
890
}
891
891
```
892
892
You can’t perform that action at this time.
0 commit comments