Greenlight: Custom Room ID

Created on 28 Mar 2020  路  3Comments  路  Source: bigbluebutton/greenlight

Is there a way I can create a custom invite participant link?

Most helpful comment

@saihaj Not at the moment. You can do it manually for each room through the console if you really wanted, but there is no UI.

Running the commands below while replacing CURRENT_ROOM_ID with the current uid (eg ahm-a13-123) and NEW_CUSTOM_ID with the new uid you want (eg test-room) will change your url from https://greenlight-hostname/b/ahm-a13-123 to https://greenlight-hostname/b/test-room

docker exec -it greenlight-v2 bash
bundle exec rails c
Room.find_by(uid: "CURRENT_ROOM_ID").update_attribute(:uid, "NEW_CUSTOM_ID")

All 3 comments

I second this request. It would be a helpful feature if you can put in your own ID. Easier to remember.

@saihaj Not at the moment. You can do it manually for each room through the console if you really wanted, but there is no UI.

Running the commands below while replacing CURRENT_ROOM_ID with the current uid (eg ahm-a13-123) and NEW_CUSTOM_ID with the new uid you want (eg test-room) will change your url from https://greenlight-hostname/b/ahm-a13-123 to https://greenlight-hostname/b/test-room

docker exec -it greenlight-v2 bash
bundle exec rails c
Room.find_by(uid: "CURRENT_ROOM_ID").update_attribute(:uid, "NEW_CUSTOM_ID")

thank you so much. worked like a charm.

Was this page helpful?
0 / 5 - 0 ratings