mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-01-04 13:17:15 -06:00
728e44833c
Contains simple user add, list, and view pages.
11 lines
311 B
Python
11 lines
311 B
Python
# A JSON-based API(view) for your app.
|
|
# Most rules would look like:
|
|
# @jsonify.when("isinstance(obj, YourClass)")
|
|
# def jsonify_yourclass(obj):
|
|
# return [obj.val1, obj.val2]
|
|
# @jsonify can convert your objects to following types:
|
|
# lists, dicts, numbers and strings
|
|
|
|
from turbojson.jsonify import jsonify
|
|
|