add deduplication window
This commit is contained in:
@@ -14,10 +14,11 @@ from config import ENROLLMENT_TABLE, MEILISEARCH_API_KEY, MEILISEARCH_HOST, USER
|
||||
from middlewares import Tenant, TenantMiddleware
|
||||
|
||||
from .cancel import router as cancel
|
||||
from .deduplication_window import router as deduplication_window
|
||||
from .enroll import router as enroll
|
||||
from .slots import router as slots
|
||||
|
||||
__all__ = ['slots', 'cancel', 'enroll']
|
||||
__all__ = ['slots', 'cancel', 'enroll', 'deduplication_window']
|
||||
|
||||
|
||||
router = Router()
|
||||
@@ -76,7 +77,7 @@ def get_enrollment(id: str):
|
||||
+ SortKey('archived_date')
|
||||
+ SortKey('cancel_policy')
|
||||
+ SortKey('parent_vacancy', path_spec='vacancy')
|
||||
+ SortKey('lock', path_spec='hash')
|
||||
+ SortKey('lock')
|
||||
+ SortKey('author')
|
||||
+ SortKey('tenant')
|
||||
+ SortKey('cert')
|
||||
|
||||
Reference in New Issue
Block a user