mirror of
https://github.com/jumpserver/jumpserver.git
synced 2026-04-04 11:22:44 +00:00
16 lines
217 B
Python
16 lines
217 B
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
|
|
|
|
def jumpserver_processor(request):
|
|
context = {}
|
|
|
|
# Setting default pk
|
|
context.update(
|
|
{'DEFAULT_PK': '00000000-0000-0000-0000-000000000000'}
|
|
)
|
|
return context
|
|
|
|
|
|
|