- Legacy-Id: 5786 Note: SVN reference [5614] has been migrated to Git commit 7e0e027149a37e2fac0b2809e8a18c896f660687 Note: SVN reference [5622] has been migrated to Git commit bde631c87ffd2ce5a93fe3c0559aafef04d23b1f
11 lines
235 B
Python
11 lines
235 B
Python
from dajaxice.core import dajaxice_functions
|
|
|
|
|
|
def dajaxice_register(original_function):
|
|
"""
|
|
Register the original funcion and returns it
|
|
"""
|
|
|
|
dajaxice_functions.register(original_function)
|
|
return original_function
|