aboutsummaryrefslogtreecommitdiff
path: root/src/client
diff options
context:
space:
mode:
authorJoris2015-08-27 20:40:58 +0200
committerJoris2015-08-27 20:40:58 +0200
commitaa7f70d172be9ef322f9a0d19d1d9d9489f9fa75 (patch)
tree4f7f05eff02b176044425a11df9bb01b00dbf9d8 /src/client
parentfd86f021e88a00348ac0e03f03d81cb15bf3042b (diff)
downloadbudget-aa7f70d172be9ef322f9a0d19d1d9d9489f9fa75.tar.gz
budget-aa7f70d172be9ef322f9a0d19d1d9d9489f9fa75.tar.bz2
budget-aa7f70d172be9ef322f9a0d19d1d9d9489f9fa75.zip
Fixing signOut url
Diffstat (limited to 'src/client')
-rw-r--r--src/client/ServerCommunication.elm2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/ServerCommunication.elm b/src/client/ServerCommunication.elm
index 010b3df..9bf2008 100644
--- a/src/client/ServerCommunication.elm
+++ b/src/client/ServerCommunication.elm
@@ -48,7 +48,7 @@ getRequest communication =
DeletePayment paymentId ->
Just (simplePost ("payment/delete?id=" ++ paymentId))
SignOut ->
- Just (simplePost "/signout")
+ Just (simplePost "/signOut")
simplePost : String -> Http.Request
simplePost url =