Hey,
I am developing an extension and I want it to be available under the /extensionv2 url but I don’t want it to show up in the sidebar. I have created a register_service endpoint which has the "works_in_relative_paths" option set to true. From the docs:
"works_in_relative_paths"(optional,New in 1.4)- Boolean (
true/false) specifying whether the extension can be served at an arbitrary base URL >(i.e. it does not access its resources using absolute paths)- This is required for extensions to be accessible remotely (e.g. via a cloud proxy), and is >recommended for all extensions
- Makes the extension available at
/extensionv2/<sanitized_name>/- The sanitized name is the
namefield in lowercase, with all non alphanumeric characters > removed
This works great but now I have a backend extension which has a frontend icon (like the Cockpit extension in this image) but I don’t want an icon because the extension doesn’t need to have frontend functionality.
My question: Is it possible to serve an extension under /extensionv2, by setting the "works_in_relative_paths" option, and not have a frontend icon show in BlueOS?
