Disable address autocomplete where required (nominatim)

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel
2019-11-20 13:49:57 +01:00
parent 280a79918c
commit 3b210a33a2
17 changed files with 220 additions and 80 deletions

View File

@@ -1,5 +1,5 @@
# source: http://localhost:4000/api
# timestamp: Mon Nov 18 2019 16:00:35 GMT+0100 (Central European Standard Time)
# timestamp: Wed Nov 20 2019 10:45:54 GMT+0100 (Central European Standard Time)
schema {
query: RootQueryType
@@ -191,7 +191,9 @@ enum CommentVisibility {
type Config {
countryCode: String
description: String
geocoding: Geocoding
location: Lonlat
maps: Maps
name: String
registrationsOpen: Boolean
}
@@ -531,6 +533,11 @@ type Follower {
targetActor: Actor
}
type Geocoding {
autocomplete: Boolean
provider: String
}
"""
Represents a group of actors
@@ -639,6 +646,10 @@ type Lonlat {
longitude: Float
}
type Maps {
tiles: Tiles
}
"""
Represents a member of a group
@@ -1229,6 +1240,11 @@ type Tag {
title: String
}
type Tiles {
attribution: String
endpoint: String
}
"""
Represents an uploaded file.