summaryrefslogtreecommitdiff
path: root/struct.go
diff options
context:
space:
mode:
authorhorus_arch2015-03-23 10:58:54 +0100
committerhorus_arch2015-03-23 10:58:54 +0100
commit05194f3a09b2382f269d31e6e2fa472a7b95e5c1 (patch)
tree3a8aa81ae33e9b97149a55ff6a715caa3c93dda9 /struct.go
parent558fe8ba9fb42231b34977fef542c43a34b3bd00 (diff)
downloadfreemail-05194f3a09b2382f269d31e6e2fa472a7b95e5c1.tar.gz
Add html documentation. Change password handler.
Diffstat (limited to 'struct.go')
-rw-r--r--struct.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/struct.go b/struct.go
index 9ea6346..bcc94c8 100644
--- a/struct.go
+++ b/struct.go
@@ -52,3 +52,10 @@ type Flash struct {
Success []interface{}
Error []interface{}
}
+
+type ChangePasswordReq struct {
+ Email string
+ Password string
+ ConfirmPassword string
+ NewPassword string
+}