|
@@ -13,16 +13,16 @@ func Mandatory(w http.ResponseWriter, r *http.Request) (logged bool) {
|
13
|
13
|
|
14
|
14
|
user, logged := auth.GetUser(r)
|
15
|
15
|
|
16
|
|
- if !logged {
|
|
16
|
+ if logged {
|
17
|
17
|
|
18
|
|
- var Errors errorHandler.Errors
|
19
|
|
- Errors.ActionForbidden("User must be logged in")
|
20
|
|
- response.JSON(Errors)
|
|
18
|
+ ctx := context.WithValue(r.Context(), "user", user)
|
|
19
|
+ r = r.WithContext(ctx)
|
21
|
20
|
|
22
|
21
|
} else {
|
23
|
22
|
|
24
|
|
- ctx := context.WithValue(r.Context(), "user", user)
|
25
|
|
- r = r.WithContext(ctx)
|
|
23
|
+ var Errors errorHandler.Errors
|
|
24
|
+ Errors.ActionForbidden("User must be logged in")
|
|
25
|
+ response.JSON(Errors)
|
26
|
26
|
}
|
27
|
27
|
|
28
|
28
|
return
|