fix for breakage introduced during merge

This commit is contained in:
Blake Watters
2011-03-21 18:53:16 -04:00
parent 483df33a37
commit 102180abce
3 changed files with 17 additions and 3 deletions

View File

@@ -101,8 +101,7 @@ static DBUser* currentUser = nil;
RKObjectLoader* objectLoader = [[RKObjectManager sharedManager] objectLoaderWithResourcePath:@"/login" delegate:self];
objectLoader.method = RKRequestMethodPOST;
objectLoader.params = [NSDictionary dictionaryWithKeysAndObjects:@"user[username]", username, @"user[password]", password, nil];
objectLoader.targetObject = self;
objectLoader.managedObjectStore = [RKObjectManager sharedManager].objectStore;
objectLoader.targetObject = self;
[objectLoader send];
}