Last active
November 4, 2025 10:55
-
-
Save sitefinitySDK/2c2c4838c63d516b39a9f983bc413cbc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "Commands": { | |
| "Migrate": { | |
| "CmsUrl": "https://yoursitefinityinstance.net", | |
| "Token": "authentication-token", | |
| "PlaceholderMap": { | |
| "Contentplaceholder1": "Body" | |
| }, | |
| "Widgets": { | |
| "Telerik.Sitefinity.Modules.GenericContent.Web.UI.ContentBlock": { | |
| "Name": "SitefinityContentBlock", // the name of the new widget in the ASP.NET Core or Next.js renderers | |
| "Whitelist": [ "Html", "ProviderName", "SharedContentID" ], // the whitelist of properties to keep during the migration | |
| "Rename": { // the properties to be renamed | |
| "Html": "Content" | |
| }, | |
| "CleanNullProperties": true | |
| }, | |
| "Telerik.Sitefinity.Frontend.Forms.Mvc.Controllers.CaptchaController": { | |
| "Name": "Captcha2", // the name of the new widget in the ASP.NET Core or Next.js renderers | |
| "Whitelist": [], // the whitelist of properties to keep during the migration | |
| "Rename": { | |
| }, | |
| "CleanNullProperties": true | |
| } | |
| }, | |
| "FormFieldNameMap": { | |
| "sf_contactus.TextFieldController": "SitefinityTextFieldFormControl" | |
| } | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment