v0.6.2: restore hmac import in app.py for callback/API key auth
This commit is contained in:
parent
0e50908747
commit
55de2ab649
3 changed files with 3 additions and 2 deletions
|
|
@ -1,6 +1,6 @@
|
|||
# Theme Song Booth
|
||||
|
||||
**Version:** `v0.6.1`
|
||||
**Version:** `v0.6.2`
|
||||
|
||||
A Flask web application for running a convention booth where visitors request a custom AI-generated theme song. Operators manage the queue from an admin dashboard, generate Suno prompts, upload MP3 previews, collect payment, and deliver final songs by email.
|
||||
|
||||
|
|
|
|||
2
VERSION
2
VERSION
|
|
@ -1 +1 @@
|
|||
0.6.1
|
||||
0.6.2
|
||||
|
|
|
|||
1
app.py
1
app.py
|
|
@ -30,6 +30,7 @@ Admin routes:
|
|||
|
||||
# Standard library imports
|
||||
import os
|
||||
import hmac
|
||||
import shutil
|
||||
import time
|
||||
from pathlib import Path
|
||||
|
|
|
|||
Reference in a new issue