* objective-C share extension * MattermostBucket module to share data between the main app and the extension * middleware that shares the data between the main app and the extension * Fix setState when safe area in unmounted * Share extension for iOS * Fastlane changes to include iOS share extension * Fix unit test * Feedback review * define proptypes for icons
16 lines
343 B
Objective-C
16 lines
343 B
Objective-C
//
|
|
// MattermostManaged.h
|
|
// Mattermost
|
|
//
|
|
// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
//
|
|
|
|
#import <React/RCTBridgeModule.h>
|
|
|
|
|
|
@interface MattermostManaged : NSObject <RCTBridgeModule>
|
|
- (NSUserDefaults *)bucketByName:(NSString*)name;
|
|
+ (void)sendConfigChangedEvent;
|
|
|
|
@end
|