feat: flesh out the auth handler; add people handler
can handle the basics now: authentication, perm checks etc.
This commit is contained in:
parent
43ca404837
commit
e899d06151
12 changed files with 1031 additions and 23 deletions
|
@ -17,5 +17,6 @@
|
|||
db.model.base
|
||||
db.sess
|
||||
exc
|
||||
people
|
||||
testing
|
||||
util
|
||||
|
|
6
docs/api/wuttjamaican/people.rst
Normal file
6
docs/api/wuttjamaican/people.rst
Normal file
|
@ -0,0 +1,6 @@
|
|||
|
||||
``wuttjamaican.people``
|
||||
=======================
|
||||
|
||||
.. automodule:: wuttjamaican.people
|
||||
:members:
|
|
@ -109,6 +109,13 @@ Glossary
|
|||
Most :term:`apps<app>` will have at least one :term:`app
|
||||
database`.
|
||||
|
||||
db session
|
||||
The "session" is a SQLAlchemy abstraction for an open database
|
||||
connection, essentially.
|
||||
|
||||
In practice this generally refers to a
|
||||
:class:`~wuttjamaican.db.sess.Session` instance.
|
||||
|
||||
entry point
|
||||
This refers to a "setuptools-style" entry point specifically,
|
||||
which is a mechanism used to register "plugins" and the like.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue