3
0
Fork 0

feat: flesh out the auth handler; add people handler

can handle the basics now: authentication, perm checks etc.
This commit is contained in:
Lance Edgar 2024-07-14 23:20:44 -05:00
parent 43ca404837
commit e899d06151
12 changed files with 1031 additions and 23 deletions

View file

@ -17,5 +17,6 @@
db.model.base
db.sess
exc
people
testing
util

View file

@ -0,0 +1,6 @@
``wuttjamaican.people``
=======================
.. automodule:: wuttjamaican.people
:members:

View file

@ -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.