Camera settings (#234)

This commit is contained in:
Jaco Greeff
2019-10-24 15:08:29 +02:00
committed by GitHub
parent ff351a0f31
commit d9cc92db14
9 changed files with 89 additions and 19 deletions
@@ -10,6 +10,21 @@ import { LEDGER_CONN, LEDGER_CONN_DEFAULT } from './ledger';
import { PREFIXES, PREFIX_DEFAULT } from './ss58';
import { ICON_DEFAULT, ICON_DEFAULT_HOST, ICONS, UIMODE_DEFAULT, UIMODES, UITHEME_DEFAULT, UITHEMES } from './ui';
const CAMERA_DEFAULT = 'on';
const CAMERA: Option[] = [
{
info: 'on',
text: 'Allow camera access',
value: 'on'
},
{
info: 'off',
text: 'Do not allow camera access',
value: 'off'
}
];
const LANGUAGE_DEFAULT = 'default';
const LANGUAGES: Option[] = [
@@ -36,6 +51,8 @@ const LOCKING: Option[] = [
];
export {
CAMERA_DEFAULT,
CAMERA,
CRYPTOS,
ENDPOINT_DEFAULT,
ENDPOINTS,