Guest User

Untitled

a guest
Oct 17th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Erlang 0.18 KB | None | 0 0
  1. % no_design couchdb filter
  2. fun({Doc},{Req}) ->
  3.     DocId = couch_util:get_value(<<"_id">>, Doc, null),
  4.     case DocId of
  5.         <<"_design", _/binary>> -> false;
  6.         _ -> true
  7.     end
  8. end.
Add Comment
Please, Sign In to add comment