diff options
author | William Carroll <wpcarro@gmail.com> | 2020-07-29T09·13+0100 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-07-29T09·13+0100 |
commit | 9f70cb2c612212e218b5df75c9afba08f51d3acb (patch) | |
tree | 7deffbd2f6328671f9de879bef4e273a22c2a5d2 /client/src/State.elm | |
parent | 289cae2528946aa5d745e904cdaaec7df1a71493 (diff) |
Add boilerplate for Google sign-in
For more information, read: https://developers.google.com/identity/sign-in/web/sign-in?authuser=1 TODO: Use Elm ports or something similar to properly interop with the onSignIn and signOn functions defined in index.html.
Diffstat (limited to 'client/src/State.elm')
-rw-r--r-- | client/src/State.elm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/State.elm b/client/src/State.elm index c1edae8bb638..8c56a7ecce1d 100644 --- a/client/src/State.elm +++ b/client/src/State.elm @@ -22,7 +22,7 @@ type alias Model = init : Model init = { isLoading = False - , view = Landing + , view = Login } |