* Little fix for context menu * Add 'My Stories' section to stories tab * Add new story thread types * Show stories in conversation picker * Support for sending stories * Update story list when sending stories * Add basic 'My Stories' view controller * Initial stories settings screens * Consolidate TSPrivateStoryThread and TSMyStoryThread into one class * Require an explicit read transaction to initialize an outgoing message * Fix linting * Allow enabling group story from internal settings * Fix tests * PR Feedback
29 lines
1.2 KiB
Objective-C
29 lines
1.2 KiB
Objective-C
//
|
|
// Copyright (c) 2022 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
#import <SignalServiceKit/TSOutgoingMessage.h>
|
|
|
|
@class TSContactThread;
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface OWSOutgoingSenderKeyDistributionMessage : TSOutgoingMessage
|
|
|
|
- (instancetype)initOutgoingMessageWithBuilder:(TSOutgoingMessageBuilder *)outgoingMessageBuilder
|
|
transaction:(SDSAnyReadTransaction *)transaction NS_UNAVAILABLE;
|
|
- (instancetype)initWithThread:(TSContactThread *)destinationThread
|
|
senderKeyDistributionMessageBytes:(NSData *)skdmBytes
|
|
transaction:(SDSAnyReadTransaction *)transaction;
|
|
|
|
/// Returns YES if this message is being sent as a precondition to sending an online-only message.
|
|
/// Typing indicators are only delivered to online devices. Since they're ephemeral we just don't bother sending a
|
|
/// typing indicator to a recipient if we need the user to verify a safety number change. Outgoing SKDMs being sent on
|
|
/// behalf of an outgoing typing indicator should inherit this behavior.
|
|
@property (assign, atomic, readonly) BOOL isSentOnBehalfOfOnlineMessage;
|
|
- (void)configureAsSentOnBehalfOf:(TSOutgoingMessage *)message NS_SWIFT_NAME(configureAsSentOnBehalfOf(_:));
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|