diff options
author | Pacien TRAN-GIRARD | 2015-02-08 20:22:09 +0100 |
---|---|---|
committer | Pacien TRAN-GIRARD | 2015-02-08 20:22:09 +0100 |
commit | 1ec4626a01da4e21b7e654cb0b6df2f52f6c5d91 (patch) | |
tree | c87ab8c1a283058461cd5efadaa4892b6aa86e0d /app/controllers | |
parent | 4496e089bca542fc98bfad0e005469211e7cbc1e (diff) | |
download | minibay-1ec4626a01da4e21b7e654cb0b6df2f52f6c5d91.tar.gz |
Define routes to be done
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/Account.scala | 6 | ||||
-rw-r--r-- | app/controllers/Profile.scala | 4 |
2 files changed, 10 insertions, 0 deletions
diff --git a/app/controllers/Account.scala b/app/controllers/Account.scala index 625ab2d..b705653 100644 --- a/app/controllers/Account.scala +++ b/app/controllers/Account.scala | |||
@@ -31,4 +31,10 @@ object Account extends Controller { | |||
31 | } | 31 | } |
32 | } | 32 | } |
33 | 33 | ||
34 | def deposit = TODO | ||
35 | |||
36 | def withdraw = TODO | ||
37 | |||
38 | def transfer = TODO | ||
39 | |||
34 | } | 40 | } |
diff --git a/app/controllers/Profile.scala b/app/controllers/Profile.scala index 8181106..0009628 100644 --- a/app/controllers/Profile.scala +++ b/app/controllers/Profile.scala | |||
@@ -138,4 +138,8 @@ object Profile extends Controller { | |||
138 | } | 138 | } |
139 | } | 139 | } |
140 | 140 | ||
141 | def viewProfile(userUuid: String) = TODO | ||
142 | |||
143 | def editProfile = TODO | ||
144 | |||
141 | } | 145 | } |