Last active
November 17, 2015 05:53
-
-
Save macbaszii/a9d620b1bf7988fd8d9c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [[JLRoutes routesForScheme:@"https"] addRoute:@"/password/reset/:token" handler:^BOOL(NSDictionary *parameters) { | |
| NSString *token = parameters[@"token"]; | |
| if (token) { | |
| //do my in-app routing to reset screen | |
| return YES; | |
| } | |
| return NO; | |
| }]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment