Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ class AddVegan : OsmFilterQuestType<DietAvailabilityAnswer>() {
(
amenity ~ restaurant|cafe|fast_food|food_court and food != no
or amenity ~ pub|nightclub|biergarten|bar and food = yes
or tourism ~ alpine_hut and food != no
)
)
and (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ class AddVegetarian : OsmFilterQuestType<DietAvailabilityAnswer>() {
(
amenity ~ restaurant|cafe|fast_food|food_court and food != no
or amenity ~ pub|nightclub|biergarten|bar and food = yes
or tourism ~ alpine_hut and food != no
)
and diet:vegan != only and (
!diet:vegetarian
Expand Down