feat: Phase 5 write with autosave, journal/story modes, skip
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -8,7 +8,7 @@ def create_app(state_dir=None, pages_dir=None):
|
||||
app.config["IMMICH_URL"] = os.environ.get("IMMICH_URL", "")
|
||||
app.config["IMMICH_API_KEY"] = os.environ.get("IMMICH_API_KEY", "")
|
||||
|
||||
from .routes import albums, triage, proxy, notes, nav, curate, group
|
||||
from .routes import albums, triage, proxy, notes, nav, curate, group, write
|
||||
app.register_blueprint(albums.bp)
|
||||
app.register_blueprint(triage.bp)
|
||||
app.register_blueprint(proxy.bp)
|
||||
@@ -16,6 +16,7 @@ def create_app(state_dir=None, pages_dir=None):
|
||||
app.register_blueprint(nav.bp)
|
||||
app.register_blueprint(curate.bp)
|
||||
app.register_blueprint(group.bp)
|
||||
app.register_blueprint(write.bp)
|
||||
|
||||
@app.get("/health")
|
||||
def health():
|
||||
|
||||
Reference in New Issue
Block a user