Files
bundesmessenger-ios/bwi/RollsAndRights/MXRoom+sendRoomPowerLevels.h
T
2022-03-17 15:51:23 +01:00

18 lines
613 B
Objective-C

#import <MatrixSDK/MatrixSDK.h>
/**
Define a `MXRoom` category
*/
@interface MXRoom (BWI)
- (MXHTTPOperation*)sendRoomPowerLevelGeneral:(NSInteger)powerLevelGeneral
powerLevelInvite:(NSInteger)powerLevelInvite
powerLevelBan:(NSInteger)powerLevelBan
powerLevelSend:(NSInteger)powerLevelSend
powerLevelRedact:(NSInteger)powerLevelRedact
success:(void (^)(void))success
failure:(void (^)(NSError *))failure;
@end