Skip to content

Commit 28014ef

Browse files
authored
Add backend feature flags and polish sponsors and floor plan (#402)
* Add backend feature flags and polish sponsors and floor plan * remove debug
1 parent d83b32c commit 28014ef

File tree

13 files changed

+391
-242
lines changed

13 files changed

+391
-242
lines changed
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<network-security-config>
22
<domain-config cleartextTrafficPermitted="true">
33
<domain includeSubdomains="true">10.0.2.2</domain>
4+
<!-- <domain includeSubdomains="true">10.1.3.174</domain>-->
45
</domain-config>
5-
</network-security-config>
6+
</network-security-config>

shared/data/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ apollo {
6060
introspection {
6161
schemaFile.set(file("src/commonMain/graphql/schema.graphqls"))
6262
endpointUrl.set("https://androidmakers.fr/graphql")
63+
//endpointUrl.set("http://10.1.3.174:8080/graphql")
6364
}
6465
}
6566
}

shared/data/src/commonMain/graphql/operations.graphql

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,3 +86,10 @@ query GetVenue($id: String!) {
8686
floorPlanUrl
8787
}
8888
}
89+
90+
query GetFeatureFlags {
91+
featureFlags {
92+
feed
93+
venue
94+
}
95+
}

0 commit comments

Comments
 (0)