Skip to content

Commit 6a5f79e

Browse files
committed
Updated readme and renamed
1 parent 3c4a704 commit 6a5f79e

File tree

5 files changed

+13
-7
lines changed

5 files changed

+13
-7
lines changed

AutoBlockList/wwwroot/backoffice/autoBlockList/overview.controller.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ angular.module("umbraco").controller("autoBlockList.overview.controller", functi
1313
vm.selectedDataTypes = []
1414

1515
var appSettings = {
16-
DataBlockConverter: {
16+
AutoBlockList: {
1717
NameFormatting: "[Block list] - {0}",
1818
AliasFormatting: "{0}BL"
1919
}

AutoBlockList/wwwroot/backoffice/autoBlockList/overview.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<div ng-controller="dataBlockConverter.overview.controller as vm">
1+
<div ng-controller="autoBlockList.overview.controller as vm">
22
<umb-editor-view>
33
<umb-editor-header name="vm.page.title"
44
description="vm.page.description"

AutoBlockList/wwwroot/components/overlays/converting.controller.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
angular.module("umbraco").controller("dataBlockConverter.converting.controller", function (
1+
angular.module("umbraco").controller("autoBlockList.converting.controller", function (
22
$http,
33
$scope,
44
editorService,

AutoBlockList/wwwroot/components/overlays/converting.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<div ng-controller="dataBlockConverter.converting.controller as vm" class="dataBlockConverter">
1+
<div ng-controller="autoBlockList.converting.controller as vm" class="dataBlockConverter">
22

33
<div ng-if="!vm.showReport">
44
<div class="flex justify-between">

README.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,19 @@
1-
# Auto BlockLists
2-
Auto BlockLists is a Umbraco package made for v10+. Made to help automate the process of converting a nested content into a block list.
1+
# Auto block list
2+
Auto block list is a Umbraco package made for v10+. Made to help automate the process of converting nested content into a block list. And transfering the content.
33

44
## About
5-
With the removal of nested content in Umbraco 13. Uppgrading becomes a bit of a nightmere if you frequently use it. That's where Auto BlockLists comes in. With one click Auto BlockLists runs the following workflow.
5+
With the removal of nested content in Umbraco 13. Uppgrading can become a bit of a nightmere if you frequently use it. That's where Auto block list comes in. With one click AutoBlockLists runs the following workflow.
66
- Creates the block list data type.
77
- Adds the new data type to the document type.
88
- And lastly it transfers the content to the newly created block list
99

1010
### Settings
11+
```
12+
"AutoBlockList": {
13+
NameFormatting: "[Block list] - {0}",
14+
AliasFormatting: "{0}BL"
15+
}
16+
```
1117

1218
## Contributing
1319

0 commit comments

Comments
 (0)