mirror of
https://github.com/logos-co/open-law.git
synced 2025-01-09 22:35:50 +00:00
12 lines
222 B
Python
12 lines
222 B
Python
from .protected_model_view import ProtectedModelView
|
|
|
|
|
|
class UsersView(ProtectedModelView):
|
|
column_list = (
|
|
"id",
|
|
"username",
|
|
"is_activated",
|
|
"wallet_id",
|
|
"is_super_user",
|
|
)
|