Skip to content

Instantly share code, notes, and snippets.

@macbaszii
Last active November 17, 2015 05:53
Show Gist options
  • Select an option

  • Save macbaszii/a9d620b1bf7988fd8d9c to your computer and use it in GitHub Desktop.

Select an option

Save macbaszii/a9d620b1bf7988fd8d9c to your computer and use it in GitHub Desktop.
[[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