mattermost-mobile/ios/UploadAttachments/UploadAttachments/Constants.m
Ryan Davis fffd31bf77 MM-14907 RN: iOS - No MattermostShare error when sharing text that is over server's max post size (#2713)
* RN: iOS - No MattermostShare error when sharing text that is over server's max post size

* MM-14907 Allow editing if over maxPostSize.

* MM-14907 Always On Character Count

* Readded work from MM-14836 Post-Merge

* Refactor of getMaxPostSize to match getMaxFileSize
2019-04-25 09:17:56 -04:00

8 lines
265 B
Objective-C

#import "Constants.h"
@implementation Constants
NSString *APP_GROUP_ID = @"group.com.mattermost.rnbeta";
UInt64 DEFAULT_SERVER_MAX_IMAGE_PIXELS = 6048 * 4032;
UInt64 DEFAULT_SERVER_MAX_FILE_SIZE = 50 * 1024 * 1024;
UInt64 DEFAULT_SERVER_MAX_POST_SIZE = 4000;
@end