Skip to content

Commit c055fbc

Browse files
authored
Merge pull request #13650 from owncloud/feat/new-files-text-editor
feat(web-app-text-editor): support log and conf files
2 parents f7faa61 + 46916c2 commit c055fbc

2 files changed

Lines changed: 14 additions & 0 deletions

File tree

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Enhancement: Support log and conf files in text editor
2+
3+
We've added support for `.log` and `.conf` files in the text editor.
4+
5+
https://github.com/owncloud/web/issues/13632
6+
https://github.com/owncloud/web/pull/13650

packages/web-app-text-editor/src/index.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,14 @@ export default defineWebApplication({
5858
{
5959
extension: 'yaml',
6060
label: () => $gettext('YAML file')
61+
},
62+
{
63+
extension: 'log',
64+
label: () => $gettext('Log file')
65+
},
66+
{
67+
extension: 'conf',
68+
label: () => $gettext('Configuration file')
6169
}
6270
]
6371

0 commit comments

Comments
 (0)