Skip to content

Commit 3036828

Browse files
authored
Merge pull request #6984 from umbraco/forms-usings
Updated using statements as per feedback
2 parents 15d6a16 + ad8aa0d commit 3036828

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

10/umbraco-forms/developer/extending/excluding-a-built-in-field.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ There might some use cases where you have no use for file upload and don't want
88
The following class shows how to exclude built-in field types using a custom composer. The `Password`, `Recaptcha2` and `RichText` field types (or "answers") will no longer be available for selection when creating a form in the backoffice.
99

1010
```csharp
11-
using Umbraco.Forms.Core.Providers;
11+
using Umbraco.Cms.Core.Composing;
12+
using Umbraco.Forms.Core.Providers.Extensions;
1213
using Umbraco.Forms.Core.Providers.FieldTypes;
1314

1415
namespace MyNamespace

13/umbraco-forms/developer/extending/excluding-a-built-in-field.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ There might some use cases where you have no use for file upload and don't want
88
The following class shows how to exclude built-in field types using a custom composer. The `Password`, `Recaptcha2` and `RichText` field types (or "answers") will no longer be available for selection when creating a form in the backoffice.
99

1010
```csharp
11-
using Umbraco.Forms.Core.Providers;
11+
using Umbraco.Cms.Core.Composing;
12+
using Umbraco.Forms.Core.Providers.Extensions;
1213
using Umbraco.Forms.Core.Providers.FieldTypes;
1314

1415
namespace MyNamespace

14/umbraco-forms/developer/extending/excluding-a-built-in-field.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ There might some use cases where you have no use for file upload and don't want
88
The following class shows how to exclude built-in field types using a custom composer. The `Password`, `Recaptcha2` and `RichText` field types (or "answers") will no longer be available for selection when creating a form in the backoffice.
99

1010
```csharp
11-
using Umbraco.Forms.Core.Providers;
11+
using Umbraco.Cms.Core.Composing;
12+
using Umbraco.Forms.Core.Providers.Extensions;
1213
using Umbraco.Forms.Core.Providers.FieldTypes;
1314

1415
namespace MyNamespace

15/umbraco-forms/developer/extending/excluding-a-built-in-field.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ There might some use cases where you have no use for file upload and don't want
88
The following class shows how to exclude built-in field types using a custom composer. The `Password`, `Recaptcha2` and `RichText` field types (or "answers") will no longer be available for selection when creating a form in the backoffice.
99

1010
```csharp
11-
using Umbraco.Forms.Core.Providers;
11+
using Umbraco.Cms.Core.Composing;
12+
using Umbraco.Forms.Core.Providers.Extensions;
1213
using Umbraco.Forms.Core.Providers.FieldTypes;
1314

1415
namespace MyNamespace

0 commit comments

Comments
 (0)