Skip to content

Instantly share code, notes, and snippets.

@sideshowcoder
Created June 9, 2014 11:23
Show Gist options
  • Save sideshowcoder/399a22d8544a92de27c3 to your computer and use it in GitHub Desktop.
Save sideshowcoder/399a22d8544a92de27c3 to your computer and use it in GitHub Desktop.
#import "Blocks.h"
#import <CouchbaseLite/CouchbaseLite.h>
@implementation Blocks
+(void)setupListsMapBlockForView:(CBLView*)view
{
if (!view.mapBlock) {
[view setMapBlock: MAPBLOCK({
if ([doc[@"type"] isEqualToString:@"list"])
emit(doc[@"title"], nil);
}) reduceBlock: nil version: @"1"];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment