You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
465 B
25 lines
465 B
import jsCookie from 'js-cookie';
|
|
|
|
const USER_COOKIE = 'mediasoup-demo.user';
|
|
const DEVICES_COOKIE = 'mediasoup-demo.devices';
|
|
|
|
export function getUser()
|
|
{
|
|
return jsCookie.getJSON(USER_COOKIE);
|
|
}
|
|
|
|
export function setUser({ displayName })
|
|
{
|
|
jsCookie.set(USER_COOKIE, { displayName });
|
|
}
|
|
|
|
export function getDevices()
|
|
{
|
|
return jsCookie.getJSON(DEVICES_COOKIE);
|
|
}
|
|
|
|
export function setDevices({ webcamEnabled })
|
|
{
|
|
jsCookie.set(DEVICES_COOKIE, { webcamEnabled });
|
|
}
|