fix: client login

This commit is contained in:
NGPixel
2018-06-17 11:12:11 -04:00
parent 197b6b4160
commit 4b0428212d
9 changed files with 91 additions and 129 deletions

View File

@@ -1,6 +1,6 @@
mutation($username: String!, $password: String!, $provider: String!) {
mutation($username: String!, $password: String!, $strategy: String!) {
authentication {
login(username: $username, password: $password, provider: $provider) {
login(username: $username, password: $password, strategy: $strategy) {
responseResult {
succeeded
errorCode

View File

@@ -1,6 +1,6 @@
query {
authentication {
providers(
strategies(
filter: "isEnabled eq true",
orderBy: "title ASC"
) {