Is there a way I can create a custom invite participant link?
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.
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_IDwith the current uid (eg ahm-a13-123) andNEW_CUSTOM_IDwith the new uid you want (eg test-room) will change your url fromhttps://greenlight-hostname/b/ahm-a13-123tohttps://greenlight-hostname/b/test-room