9 lines
244 B
Python
9 lines
244 B
Python
from .settings_default import *
|
|
REST_FRAMEWORK = {
|
|
'DEFAULT_AUTHENTICATION_CLASSES': (
|
|
'rest_framework.authentication.BasicAuthentication',
|
|
'rest_framework.authentication.SessionAuthentication',
|
|
),
|
|
'PAGE_SIZE': 10
|
|
}
|