mirror of https://github.com/logos-co/open-law.git
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",
|
||
|
)
|