* 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
8 lines
265 B
Objective-C
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
|