[ feature request ] Set browser's title via env variable.
to change browser's title I have to edit 2 files.
but is it possible to do it via env vars ?
I'm also interested in this feature. Despite modifying application.html.erb and application_helper.rb to customize the title, it reverts to the default "BigBlueButton" shortly after a page refresh (greenlight release-3.2.3).
It seems essential to have a straightforward way to consistently apply such a fundamental customization.
Currently, I'm resorting to using a MutationObserver as a workaround to maintain the customized title. While effective, this feels like a cumbersome and inelegant solution.
@Quadrocompile I edited this: https://github.com/bigbluebutton/greenlight/blob/c5a16e7165586c8604de9e71e96627d20a081e46/app/javascript/App.jsx#L80
and
https://github.com/bigbluebutton/greenlight/blob/c5a16e7165586c8604de9e71e96627d20a081e46/app/views/layouts/application.html.erb#L20
@amg-web thank you for the insight. I'll implement the suggested modifications and see how they perform.
I also edited this:
https://github.com/bigbluebutton/greenlight/blob/c5a16e7165586c8604de9e71e96627d20a081e46/app/helpers/application_helper.rb#L25-L31