Add permissive filter set
This is the default filter set on user profiles and the saved teams page
This commit is contained in:
parent
125d0e62c3
commit
a9aa498ab6
1 changed files with 14 additions and 2 deletions
|
|
@ -4,8 +4,8 @@ const DEFAULT_CHARGE_ATTACK = -1
|
||||||
const DEFAULT_MIN_CHARACTERS = 2
|
const DEFAULT_MIN_CHARACTERS = 2
|
||||||
const DEFAULT_MIN_WEAPONS = 5
|
const DEFAULT_MIN_WEAPONS = 5
|
||||||
const DEFAULT_MIN_SUMMONS = 2
|
const DEFAULT_MIN_SUMMONS = 2
|
||||||
const DEFAULT_NAME_QUALITY = false
|
const DEFAULT_NAME_QUALITY = true
|
||||||
const DEFAULT_USER_QUALITY = false
|
const DEFAULT_USER_QUALITY = true
|
||||||
const DEFAULT_ORIGINAL_ONLY = false
|
const DEFAULT_ORIGINAL_ONLY = false
|
||||||
|
|
||||||
export const defaultFilterset: FilterSet = {
|
export const defaultFilterset: FilterSet = {
|
||||||
|
|
@ -19,3 +19,15 @@ export const defaultFilterset: FilterSet = {
|
||||||
user_quality: DEFAULT_USER_QUALITY,
|
user_quality: DEFAULT_USER_QUALITY,
|
||||||
original: DEFAULT_ORIGINAL_ONLY,
|
original: DEFAULT_ORIGINAL_ONLY,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export const permissiveFilterset: FilterSet = {
|
||||||
|
full_auto: -1,
|
||||||
|
auto_guard: -1,
|
||||||
|
charge_attack: -1,
|
||||||
|
characters_count: 0,
|
||||||
|
weapons_count: 0,
|
||||||
|
summons_count: 0,
|
||||||
|
name_quality: false,
|
||||||
|
user_quality: false,
|
||||||
|
original: false,
|
||||||
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue