Signal-iOS/SignalServiceKit/src/Messages/OWSOutgoingGroupCallMessage.h
Nora Trapp 7bd167f815
Initial story sending support
* 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
2022-06-10 22:28:03 -04:00

22 lines
638 B
Objective-C

//
// Copyright (c) 2022 Open Whisper Systems. All rights reserved.
//
#import <SignalServiceKit/TSOutgoingMessage.h>
@class TSGroupThread;
NS_ASSUME_NONNULL_BEGIN
@interface OWSOutgoingGroupCallMessage : TSOutgoingMessage
- (instancetype)initOutgoingMessageWithBuilder:(TSOutgoingMessageBuilder *)outgoingMessageBuilder
transaction:(SDSAnyReadTransaction *)transaction NS_UNAVAILABLE;
- (instancetype)initWithThread:(TSGroupThread *)thread
eraId:(nullable NSString *)eraId
transaction:(SDSAnyReadTransaction *)transaction;
@end
NS_ASSUME_NONNULL_END