Skip to content

Commit 409859d

Browse files
authored
Merge pull request #34 from exadel-inc/feature/EA-31
[EA-31] Added support for AEM dispatcher config files
2 parents c18b7df + 9b990d4 commit 409859d

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

core/src/main/java/com/exadel/etoolbox/anydiff/ContentType.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,8 @@ boolean matchesName(String value) {
9090
String extension = StringUtils.substringAfterLast(value, Constants.DOT);
9191
return StringUtils.equalsAnyIgnoreCase(
9292
extension,
93+
"any",
94+
"conf",
9395
"css",
9496
"csv",
9597
"ecma",
@@ -104,8 +106,11 @@ boolean matchesName(String value) {
104106
"mf",
105107
"php",
106108
"properties",
109+
"rules",
107110
"ts",
108-
"txt");
111+
"txt",
112+
"vars",
113+
"vhost");
109114
}
110115
};
111116

0 commit comments

Comments
 (0)