camper/pkg/app
jordi fita mas 2f3fc8812d Include the locale inside the User struct
The locale is completely dependent on the user, as much as its email or
CSRF token, so it does not make much sense to have it in a separate
variable: for different users we might have to use different locales.
Also, this means one less variable to pass to handlers, that most of
them will need the user at some point or another (i.e., to render its
profile icon).

The thing is that i can not import `app.User` from the template package
because it would create an import cycle. I created the `auth` package
just because of that.

I thought that the login code would be better moved to the auth package
as well, but of course then i would reintroduce the import cycle between
auth and template.
2023-07-26 12:08:59 +02:00
..
app.go Include the locale inside the User struct 2023-07-26 12:08:59 +02:00
login.go Include the locale inside the User struct 2023-07-26 12:08:59 +02:00
user.go Include the locale inside the User struct 2023-07-26 12:08:59 +02:00