Skip to content

Commit 8b5ea9a

Browse files
authored
Merge pull request #129 from sumsard/patch-1
Enhance documentation for GUID file naming
2 parents 6b8fd06 + 1b315a2 commit 8b5ea9a

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

usync/01.uSync/20.guides/40.guid.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,37 @@ The default value for this setting is **false.**
3434
}
3535
```
3636

37+
## Guid File Names For Specific Entities
3738

39+
If you are only using GUID ID for one or more 'type' (Content, ContentTypes, etc.), you can add them individually.
40+
41+
Enable Guid file names for Content:
42+
43+
```json title='appsettings.json'
44+
"Sets": {
45+
"Default": {
46+
"Handlers": {
47+
"ContentHandler": {
48+
"GuidNames": true
49+
}
50+
}
51+
}
52+
}
53+
```
54+
55+
Enable Guid file names for multiple 'types':
56+
57+
```json title='appsettings.json'
58+
"Sets": {
59+
"Default": {
60+
"Handlers": {
61+
"ContentHandler": {
62+
"GuidNames": true
63+
},
64+
"ContentTypeHandler": {
65+
"GuidNames": true
66+
}
67+
}
68+
}
69+
}
70+
```

0 commit comments

Comments
 (0)