aboutsummaryrefslogtreecommitdiff
path: root/docs/_build/html/_sources/autoapi/app/models
diff options
context:
space:
mode:
authorNavan Chauhan <navanchauhan@gmail.com>2021-06-07 13:59:08 +0530
committerNavan Chauhan <navanchauhan@gmail.com>2021-06-07 13:59:08 +0530
commit3a708b304319afe84ebf3d40ecebabe6acc339f3 (patch)
treeb72f391dbe4d5370394c546f94e10d6edaa17a63 /docs/_build/html/_sources/autoapi/app/models
parent359813517e3382c527125fe673fa89f0fd0742c0 (diff)
started work on automatic documentation
Diffstat (limited to 'docs/_build/html/_sources/autoapi/app/models')
-rw-r--r--docs/_build/html/_sources/autoapi/app/models/index.rst.txt99
1 files changed, 99 insertions, 0 deletions
diff --git a/docs/_build/html/_sources/autoapi/app/models/index.rst.txt b/docs/_build/html/_sources/autoapi/app/models/index.rst.txt
new file mode 100644
index 0000000..f425142
--- /dev/null
+++ b/docs/_build/html/_sources/autoapi/app/models/index.rst.txt
@@ -0,0 +1,99 @@
+:mod:`app.models`
+=================
+
+.. py:module:: app.models
+
+
+Module Contents
+---------------
+
+Classes
+~~~~~~~
+
+.. autoapisummary::
+
+ app.models.User
+
+
+
+
+.. class:: User
+
+ Bases: :py:obj:`app.db.Model`, :py:obj:`flask_login.UserMixin`
+
+ This provides default implementations for the methods that Flask-Login
+ expects user objects to have.
+
+ .. attribute:: __tablename__
+ :annotation: = users
+
+
+
+ .. attribute:: first_name
+
+
+
+
+ .. attribute:: last_name
+
+
+
+
+ .. attribute:: email
+
+
+
+
+ .. attribute:: confirmation
+
+
+
+
+ .. attribute:: paid
+
+
+
+
+ .. attribute:: role
+
+
+
+
+ .. attribute:: team
+
+
+
+
+ .. attribute:: login_type
+
+
+
+
+ .. attribute:: _password
+
+
+
+
+ .. method:: full_name(self)
+ :property:
+
+
+ .. method:: password(self)
+
+
+ .. method:: check_password(self, plaintext)
+
+
+ .. method:: get_id(self)
+
+
+ .. method:: get_role(self)
+
+
+ .. method:: get_team(self)
+
+
+ .. method:: is_paid(self)
+
+
+