From 87e6ced8ecd0ba54af1f67319fccf96c13ba6261 Mon Sep 17 00:00:00 2001 From: Mitsuo Tokumori Date: Fri, 27 Oct 2023 19:05:20 -0500 Subject: Add authentication logic --- README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'README.md') diff --git a/README.md b/README.md index 17876c2..6433ba2 100644 --- a/README.md +++ b/README.md @@ -24,4 +24,12 @@ Concepts: * flask.open_resource: From app package path * request: HTML request??? * Factory function > registered functions and blueprints. -* Blueprint > views & other code \ No newline at end of file +* Blueprint: groups views & other code +* View: function that returns HTML +* flask.session: dict that stores data across requests (cookies) (securely + signed with SECRET_KEY) +* *endpoint*: name associated with a view, `.` + +Gotchas: + +* Remember to call db.commit() after modifying DB (DML). \ No newline at end of file -- cgit v1.2.3