mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* Added expiry support in custom status APIs (#11) * Added expiry support in custom status APIs Added validation for the duration and expiration time in request body Made enum for the custom status durations * Fixed the bug in expiry validation with dont clear validation * Fixed review comments Converted the durations enum to map Removed extra if-else * Added expiry support in custom status slash command (#17) * Added expiry support in custom status slash command * Added the check for timezone enabled in expiry time in custom status slash command * Review fixes Changed name of calculateExpriryTime to calculateEndOfDay Made function SetDefaultEmoji for settting default emoji in set custom status API * Added support for empty duration in custom status APIs Made one of emoji and text required and duration optional in set custom status API Made default duration dont clear in both API and slash command * Changed value of ExpiresAt field in custom status slash command * Code refactoring Combined SetDefaults and TrimMessage into 1 function PreSave Refactored isExpirationTimeValid function * Used model variables instead of new variables in custom status slash command * Modified behaviour of set custom status APIs (#19) Removed dont_clear from validCustomStatusDuration map Added logic to set duration custom date/time if only expires_at is specified in the body Made function AreDurationAndExpirationTimeValid in custom status model * Trigger CI build