Update API code to use viewsets. Update links and URLs to use keyword arguments. Signed-off-by: Roberto Rosario <Roberto.Rosario@mayan-edms.com>
7 lines
242 B
Python
7 lines
242 B
Python
from __future__ import unicode_literals
|
|
|
|
TEST_MESSAGE_LABEL = 'test label'
|
|
TEST_MESSAGE_LABEL_EDITED = '{} edited'.format(TEST_MESSAGE_LABEL)
|
|
TEST_MESSAGE_TEXT = 'test message'
|
|
TEST_MESSAGE_TEXT_EDITED = '{} edited'.format(TEST_MESSAGE_TEXT)
|