Remove array support from session for now

This commit is contained in:
Sdogruyol 2016-09-29 23:20:42 +03:00 committed by Serdar Dogruyol
parent a8e53fb94e
commit e2c99bcfb8
2 changed files with 1 additions and 4 deletions

View file

@ -16,7 +16,7 @@ module Kemal
# Sessions are pruned hourly after 48 hours of inactivity.
class Sessions
# Session Types are String, Integer, Float and Boolean
alias SessionTypes = String | Int32 | Float64 | Bool | Array(String | Int32 | Float64 | Bool)
alias SessionTypes = String | Int32 | Float64 | Bool
# In-memory, ephemeral datastore only.
#