We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce2c8f0 commit 0410fe1Copy full SHA for 0410fe1
1 file changed
Coding_iOS/Models/Register.m
@@ -6,6 +6,8 @@
6
// Copyright (c) 2014年 Coding. All rights reserved.
7
//
8
9
+#define kRegisterChannel @"coding-ios"
10
+
11
#import "Register.h"
12
13
@implementation Register
@@ -22,6 +24,7 @@ - (instancetype)init
22
24
- (NSDictionary *)toParams{
23
25
return @{@"email" : self.email,
26
@"global_key" : self.global_key,
- @"j_captcha" : _j_captcha? _j_captcha: @""};
27
+ @"j_captcha" : _j_captcha? _j_captcha: @"",
28
+ @"coding-ios" : kRegisterChannel};
29
}
30
@end
0 commit comments