mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-29 04:54:00 +03:00
parent
7038571157
commit
276ed80fd3
|
@ -644,8 +644,20 @@ class BooleanField(Field):
|
||||||
}
|
}
|
||||||
default_empty_html = False
|
default_empty_html = False
|
||||||
initial = False
|
initial = False
|
||||||
TRUE_VALUES = {'t', 'T', 'true', 'True', 'TRUE', '1', 1, True}
|
TRUE_VALUES = {
|
||||||
FALSE_VALUES = {'f', 'F', 'false', 'False', 'FALSE', '0', 0, 0.0, False}
|
't', 'T',
|
||||||
|
'true', 'True', 'TRUE',
|
||||||
|
'on', 'On', 'ON',
|
||||||
|
'1', 1,
|
||||||
|
True
|
||||||
|
}
|
||||||
|
FALSE_VALUES = {
|
||||||
|
'f', 'F',
|
||||||
|
'false', 'False', 'FALSE',
|
||||||
|
'off', 'Off', 'OFF',
|
||||||
|
'0', 0, 0.0,
|
||||||
|
False
|
||||||
|
}
|
||||||
|
|
||||||
def __init__(self, **kwargs):
|
def __init__(self, **kwargs):
|
||||||
assert 'allow_null' not in kwargs, '`allow_null` is not a valid option. Use `NullBooleanField` instead.'
|
assert 'allow_null' not in kwargs, '`allow_null` is not a valid option. Use `NullBooleanField` instead.'
|
||||||
|
|
Loading…
Reference in New Issue
Block a user