use pillow instead of PIL
[mygpo.git] / couchdb / general / _design / sanitizing_rules / views / by_slug / map.js
blobe17c674ea6e64142559521d152d3c0bf9f535a90
1 function(doc)
3     if(doc.doc_type == "SanitizingRule")
4     {
5         emit(doc.slug, null);
6     }