// constants.ts // Copyright (C) 2020 Dwayne Harris // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // You should have received a copy of the GNU General Public License // along with this program. If not, see . export const MIN_ID_LENGTH = 5 export const MAX_ID_LENGTH = 40 export const MAX_NAME_LENGTH = 80 export const MIN_PASSWORD_LENGTH = 8 export const SHORT_TEXT_LENGTH = 100 export const SUBSCRIBER_MAX_SIZE = 100 export const USER_LISTING_PARTITION_KEY = 'upk' export const GROUP_LISTING_PARTITION_KEY = 'gpk' export const APP_PARTITION_KEY = 'apk' export const INSTALLATION_PARTITION_KEY = 'ipk' export const MEDIA_PARTITION_KEY = 'pk' export const ADMINS = [ 'dwayneh@gmail.com', ]