Path: blob/main/SignalServiceKit/Messages/OWSAddToProfileWhitelistOfferMessage.m
1 views
//1// Copyright 2017 Signal Messenger, LLC2// SPDX-License-Identifier: AGPL-3.0-only3//45#import "OWSAddToProfileWhitelistOfferMessage.h"67NS_ASSUME_NONNULL_BEGIN89// TODO: Cull?10// This is a deprecated class, we're keeping it around to avoid YapDB serialization errors11// TODO - remove this class, clean up existing instances, ensure any missed ones don't explode (UnknownDBObject)12#pragma clang diagnostic push13#pragma clang diagnostic ignored "-Wdeprecated-implementations"14@implementation OWSAddToProfileWhitelistOfferMessage15#pragma clang diagnostic pop1617// --- CODE GENERATION MARKER1819// This snippet is generated by /Scripts/sds_codegen/sds_generate.py. Do not manually edit it, instead run20// `sds_codegen.sh`.212223// --- CODE GENERATION MARKER2425- (BOOL)shouldUseReceiptDateForSorting26{27// Use the timestamp, not the "received at" timestamp to sort,28// since we're creating these interactions after the fact and back-dating them.29return NO;30}3132- (BOOL)isDynamicInteraction33{34return YES;35}3637@end3839NS_ASSUME_NONNULL_END404142