Move roomnameGenerator.js out of features/base/util

Over time features/base/util became a bucket where people seemed to dump
just about anything they couldn't think of a better place for. That's a
trend I don't like encouraging. Given that roomnameGenerator.js is
currently used in features/welcome only, I'm fine with moving it there
for the greater good.
This commit is contained in:
Lyubo Marinov
2017-04-14 13:08:54 -05:00
parent a8b3177e20
commit 3db557e2c9
4 changed files with 4 additions and 4 deletions

View File

@@ -4,7 +4,8 @@ import { appNavigate } from '../../app';
import { isRoomValid } from '../../base/conference';
import { VideoTrack } from '../../base/media';
import { getLocalVideoTrack } from '../../base/tracks';
import { generateRoomWithoutSeparator } from '../../base/util';
import { generateRoomWithoutSeparator } from '../roomnameGenerator';
/**
* Base (abstract) class for container component rendering the welcome page.