feat: analytics modules backend + admin panel

This commit is contained in:
Nick
2019-06-23 18:35:14 -04:00
parent b34aa5bab4
commit 537551874b
25 changed files with 752 additions and 60 deletions

View File

@@ -0,0 +1,12 @@
mutation($providers: [AnalyticsProviderInput]!) {
analytics {
updateProviders(providers: $providers) {
responseResult {
succeeded
errorCode
slug
message
}
}
}
}

View File

@@ -0,0 +1,17 @@
query {
analytics {
providers {
isEnabled
key
title
description
isAvailable
logo
website
config {
key
value
}
}
}
}