diff --git a/components/resources/resources-application/src/main/resources/META-INF/dirigible/application/configs/shell.js b/components/resources/resources-application/src/main/resources/META-INF/dirigible/application/configs/shell.js new file mode 100644 index 00000000000..cd75945b0f4 --- /dev/null +++ b/components/resources/resources-application/src/main/resources/META-INF/dirigible/application/configs/shell.js @@ -0,0 +1,19 @@ +/* + * Copyright (c) 2026 Eclipse Dirigible contributors + * + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v2.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v20.html + * + * SPDX-FileCopyrightText: Eclipse Dirigible contributors + * SPDX-License-Identifier: EPL-2.0 + */ +const shellData = { + id: 'applicationShell', + path: '/services/web/application/index.html', + label: 'Applications' +}; +if (typeof exports !== 'undefined') { + exports.getShell = () => shellData; +} diff --git a/components/resources/resources-application/src/main/resources/META-INF/dirigible/application/extensions/shell.extension b/components/resources/resources-application/src/main/resources/META-INF/dirigible/application/extensions/shell.extension new file mode 100644 index 00000000000..42ff64d9411 --- /dev/null +++ b/components/resources/resources-application/src/main/resources/META-INF/dirigible/application/extensions/shell.extension @@ -0,0 +1,5 @@ +{ + "module": "application/configs/shell.js", + "extensionPoint": "platform-shells", + "description": "Application Shell" +} diff --git a/components/resources/resources-my/src/main/resources/META-INF/dirigible/my/configs/shell.js b/components/resources/resources-my/src/main/resources/META-INF/dirigible/my/configs/shell.js new file mode 100644 index 00000000000..0771c85819b --- /dev/null +++ b/components/resources/resources-my/src/main/resources/META-INF/dirigible/my/configs/shell.js @@ -0,0 +1,19 @@ +/* + * Copyright (c) 2026 Eclipse Dirigible contributors + * + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v2.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v20.html + * + * SPDX-FileCopyrightText: Eclipse Dirigible contributors + * SPDX-License-Identifier: EPL-2.0 + */ +const shellData = { + id: 'myShell', + path: '/services/web/my/index.html', + label: 'My' +}; +if (typeof exports !== 'undefined') { + exports.getShell = () => shellData; +} diff --git a/components/resources/resources-my/src/main/resources/META-INF/dirigible/my/extensions/shell.extension b/components/resources/resources-my/src/main/resources/META-INF/dirigible/my/extensions/shell.extension new file mode 100644 index 00000000000..ef2c1a42a13 --- /dev/null +++ b/components/resources/resources-my/src/main/resources/META-INF/dirigible/my/extensions/shell.extension @@ -0,0 +1,5 @@ +{ + "module": "my/configs/shell.js", + "extensionPoint": "platform-shells", + "description": "My Shell" +}