Forum Discussion
Wildtypitch
Feb 23, 2021Copper Contributor
Making a Library appear in quick launch via site scripts json
Hi all,
I'm creating libraries using site scripts but can't make them automatically appear in the quick launch and am having to manually go to the library settings and toggle the "appear in quick launch " option there. What json do I need to add to enable this?
1 Reply
Sort By
Wildtypitch Check out the schema documentation for adding a navigation link via site actions at: https://docs.microsoft.com/en-us/sharepoint/dev/declarative-customization/site-design-json-schema#add-a-navigation-link
Here is an example of adding link to library to quick launch
{
"verb": "addNavLink",
"url": "/Customer Event Collateral",
"displayName": "Event Collateral",
"isWebRelative": true
}Good Luck!