git remote add ssk ../SignalServiceKit git remote update git merge -s ours --allow-unrelated-histories --no-commit ssk/master git read-tree --prefix=SignalServiceKit -u ssk/master git commit
25 lines
452 B
Objective-C
25 lines
452 B
Objective-C
// Copyright (c) 2016 Open Whisper Systems. All rights reserved.
|
|
|
|
#import "OWSDeviceProvisioningCodeRequest.h"
|
|
#import "TSConstants.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@implementation OWSDeviceProvisioningCodeRequest
|
|
|
|
- (instancetype)init
|
|
{
|
|
self = [super initWithURL:[NSURL URLWithString:textSecureDeviceProvisioningCodeAPI]];
|
|
if (!self) {
|
|
return self;
|
|
}
|
|
|
|
[self setHTTPMethod:@"GET"];
|
|
|
|
return self;
|
|
}
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|