1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-26 13:44:41 +00:00
bramw_baserow/web-frontend/modules/core/enums.js
2023-08-11 12:14:21 +00:00

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',
}