diff options
| author | Samantaz Fox <coding@samantaz.fr> | 2022-02-04 04:09:07 +0100 |
|---|---|---|
| committer | Samantaz Fox <coding@samantaz.fr> | 2022-02-07 17:15:22 +0100 |
| commit | c04f45d5e36499e6faefd163e92c58fa1abaa7ae (patch) | |
| tree | eba321fecce9e0075ef0bcbaf39c7f237751bead /src/invidious.cr | |
| parent | fb3615502258c71249c6d77aebe684234756b416 (diff) | |
| download | invidious-c04f45d5e36499e6faefd163e92c58fa1abaa7ae.tar.gz invidious-c04f45d5e36499e6faefd163e92c58fa1abaa7ae.tar.bz2 invidious-c04f45d5e36499e6faefd163e92c58fa1abaa7ae.zip | |
Move user struct to own file, under Invidious namespace
Diffstat (limited to 'src/invidious.cr')
| -rw-r--r-- | src/invidious.cr | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/invidious.cr b/src/invidious.cr index fc498dbf..1e78ef5d 100644 --- a/src/invidious.cr +++ b/src/invidious.cr @@ -548,7 +548,7 @@ add_handler AuthHandler.new add_handler DenyFrame.new add_context_storage_type(Array(String)) add_context_storage_type(Preferences) -add_context_storage_type(User) +add_context_storage_type(Invidious::User) Kemal.config.logger = LOGGER Kemal.config.host_binding = Kemal.config.host_binding != "0.0.0.0" ? Kemal.config.host_binding : CONFIG.host_binding |
