Skip to content

Instantly share code, notes, and snippets.

@theill
Created September 13, 2013 09:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save theill/6548593 to your computer and use it in GitHub Desktop.
Save theill/6548593 to your computer and use it in GitHub Desktop.
- (void)expire:(NSString *)offerId success:(void (^)(BOOL))success failure:(ErrorBlock)failure {
[self deletePath:[NSString stringWithFormat:@"/offers/%@", offerId] parameters:nil
success:^(AFHTTPRequestOperation *o, id rsp) {
if (success) {
success(YES);
}
}
failure:[self handleError:failure]];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment