File tree Expand file tree Collapse file tree 3 files changed +22
-0
lines changed
src/Umbraco.Deploy.Contrib.Connectors Expand file tree Collapse file tree 3 files changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ This project offers Umbraco Deploy connectors for the following community packag
19
19
- [ Stacked Content] ( https://github.com/umco/umbraco-stacked-content )
20
20
- [ nuPickers] ( https://our.umbraco.org/projects/backoffice-extensions/nupickers/ )
21
21
- [ Archetype] ( https://our.umbraco.org/projects/backoffice-extensions/archetype/ )
22
+ - [ Content List] ( https://github.com/umco/umbraco-content-list )
22
23
23
24
---
24
25
Original file line number Diff line number Diff line change 242
242
<Compile Include =" ValueConnectors\NuPickersValueConnector.cs" />
243
243
<Compile Include =" ValueConnectors\RelatedLinksValueConnector.cs" />
244
244
<Compile Include =" ValueConnectors\RelatedLinks2ValueConnector.cs" />
245
+ <Compile Include =" ValueConnectors\ContentListConnector.cs" />
245
246
<Compile Include =" ValueConnectors\VortoValueConnector.cs" />
246
247
<Compile Include =" ValueConnectors\InnerContentConnector.cs" />
247
248
<Compile Include =" ValueConnectors\StackedContentConnector.cs" />
Original file line number Diff line number Diff line change
1
+ using System ;
2
+ using System . Collections . Generic ;
3
+ using Umbraco . Core . Services ;
4
+ using Umbraco . Deploy . ValueConnectors ;
5
+
6
+ namespace Umbraco . Deploy . Contrib . Connectors . ValueConnectors
7
+ {
8
+ /// <summary>
9
+ /// A Deploy ValueConnector for the Content List property editor.
10
+ /// https://github.com/umco/umbraco-content-list
11
+ /// </summary>
12
+ public class ContentListConnector : InnerContentConnector
13
+ {
14
+ public override IEnumerable < string > PropertyEditorAliases => new [ ] { "Our.Umbraco.ContentList" } ;
15
+
16
+ public ContentListConnector ( IContentTypeService contentTypeService , Lazy < ValueConnectorCollection > valueConnectors )
17
+ : base ( contentTypeService , valueConnectors )
18
+ { }
19
+ }
20
+ }
You can’t perform that action at this time.
0 commit comments