Incorporate the external django-autoadmin app as a core app and convert it into a Mayan app. This change adds the new settings: "COMMON_AUTOADMIN_EMAIL", "AUTOADMIN_PASSWORD", and "AUTOADMIN_USERNAME". Signed-off-by: Roberto Rosario <Roberto.Rosario@mayan-edms.com>
8 lines
284 B
Python
8 lines
284 B
Python
from __future__ import unicode_literals
|
|
|
|
TEST_ADMIN_USER_EMAIL = 'testemail@example.com'
|
|
TEST_ADMIN_USER_PASSWORD = 'test admin user password'
|
|
TEST_ADMIN_USER_USERNAME = 'test_admin_user_username'
|
|
TEST_FIRST_TIME_LOGIN_TEXT = 'First time login'
|
|
TEST_MOCK_VIEW_TEXT = 'mock view text'
|