You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Hydro/packages/ui-default/constant/setting.js

18 lines
481 B
JavaScript

import attachObjectMeta from './util/objectMeta';
export const PRIVACY_PUBLIC = 0;
export const PRIVACY_REGISTERED_ONLY = 1;
export const PRIVACY_SECRET = 2;
export const PRIVACY_RANGE = {
[PRIVACY_PUBLIC]: 'Public',
[PRIVACY_REGISTERED_ONLY]: 'Visible to registered users',
[PRIVACY_SECRET]: 'Secret',
};
attachObjectMeta(PRIVACY_RANGE, 'intKey', true);
export const FUNCTION_RANGE = {
0: 'Disabled',
1: 'Enabled',
};
attachObjectMeta(FUNCTION_RANGE, 'intKey', true);