aboutsummaryrefslogtreecommitdiff
path: root/src/common/attributes/useServerAttributes.js
blob: 80ac3c7dd6b4d81335788e1a21507868ed964806 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import { useMemo } from 'react';

export default (t) => useMemo(() => ({
  support: {
    name: t('settingsSupport'),
    type: 'string',
  },
  title: {
    name: t('serverName'),
    type: 'string',
  },
  description: {
    name: t('serverDescription'),
    type: 'string',
  },
  logo: {
    name: t('serverLogo'),
    type: 'string',
  },
  logoInverted: {
    name: t('serverLogoInverted'),
    type: 'string',
  },
  colorPrimary: {
    name: t('serverColorPrimary'),
    type: 'string',
    subtype: 'color',
  },
  colorSecondary: {
    name: t('serverColorSecondary'),
    type: 'string',
    subtype: 'color',
  },
  disableChange: {
    name: t('serverChangeDisable'),
    type: 'boolean',
  },
  darkMode: {
    name: t('settingsDarkMode'),
    type: 'boolean',
  },
  totpEnable: {
    name: t('settingsTotpEnable'),
    type: 'boolean',
  },
  totpForce: {
    name: t('settingsTotpForce'),
    type: 'boolean',
  },
  serviceWorkerUpdateInterval: {
    name: t('settingsServiceWorkerUpdateInterval'),
    type: 'number',
  },
  'ui.disableLoginLanguage': {
    name: t('attributeUiDisableLoginLanguage'),
    type: 'boolean',
  },
  disableShare: {
    name: t('serverDisableShare'),
    type: 'boolean',
  },
}), [t]);