Files
CTFd/CTFd/constants/users.py
2020-04-29 20:33:51 -04:00

23 lines
367 B
Python

from collections import namedtuple
UserAttrs = namedtuple(
"UserAttrs",
[
"id",
"oauth_id",
"name",
"email",
"type",
"secret",
"website",
"affiliation",
"country",
"bracket",
"hidden",
"banned",
"verified",
"team_id",
"created",
],
)