From e5847cfafb4c8244b964876852c620d2dfa7669b Mon Sep 17 00:00:00 2001 From: jsheridan <17163297+jooshkins@users.noreply.github.com> Date: Fri, 31 Mar 2023 11:01:47 -0400 Subject: Feature - Page Preview for Simulator (#2174) Authored-by: jooshkins --- lib/api/server.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib/api/server.py') diff --git a/lib/api/server.py b/lib/api/server.py index f9bb6458..41a42731 100644 --- a/lib/api/server.py +++ b/lib/api/server.py @@ -19,6 +19,7 @@ from .install import install from .simulator import simulator from .stitch_plan import stitch_plan from .preferences import preferences +from .page_specs import page_specs class APIServer(Thread): @@ -47,6 +48,7 @@ class APIServer(Thread): self.app.register_blueprint(stitch_plan, url_prefix="/stitch_plan") self.app.register_blueprint(install, url_prefix="/install") self.app.register_blueprint(preferences, url_prefix="/preferences") + self.app.register_blueprint(page_specs, url_prefix="/page_specs") @self.app.before_request def store_extension(): -- cgit v1.2.3