Pinafore-Web-Client-Frontend/routes/_static/statuses.js

25 lines
370 B
JavaScript
Raw Permalink Normal View History

2018-02-27 07:22:56 +01:00
export const CHAR_LIMIT = 500
2018-03-03 22:23:26 +01:00
export const POST_PRIVACY_OPTIONS = [
{
label: 'Public',
key: 'public',
icon: '#fa-globe'
},
{
label: 'Unlisted',
key: 'unlisted',
icon: '#fa-unlock'
},
{
label: 'Followers-only',
key: 'private',
icon: '#fa-lock'
},
{
label: 'Direct',
key: 'direct',
icon: '#fa-envelope'
}
]