feature: IP filtering on signup page

disable registration form on IP not in range
checking the CIDR list before filtering with it
placing the cidr filters as an attribute object in the config
This commit is contained in:
Rigel Kent 2018-05-22 19:43:13 +02:00 committed by Rigel Kent
parent e2f1dad836
commit ff2c1fe813
13 changed files with 105 additions and 9 deletions

View file

@ -15,7 +15,8 @@ export interface ServerConfig {
}
signup: {
allowed: boolean
allowed: boolean,
allowedForCurrentIP: boolean
}
transcoding: {