mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-26 13:44:41 +00:00
10 lines
328 B
JavaScript
10 lines
328 B
JavaScript
export const IMAGE_FILE_TYPES = ['image/jpeg', 'image/jpg', 'image/png']
|
|
|
|
// Keep these in sync with the backend options in
|
|
// baserow.core.models.UserProfile.EmailNotificationFrequencyOptions
|
|
export const EMAIL_NOTIFICATIONS_FREQUENCY_OPTIONS = {
|
|
INSTANT: 'instant',
|
|
DAILY: 'daily',
|
|
WEEKLY: 'weekly',
|
|
NEVER: 'never',
|
|
}
|