Skip to content

Commit

Permalink
make extension handlers and settings configurable
Browse files Browse the repository at this point in the history
  • Loading branch information
Zsailer committed Jun 6, 2019
1 parent dc29a23 commit 9915490
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jupyter_server/extension/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,11 +118,11 @@ def static_url_prefix(self):

settings = Dict(
help=_("""Settings that will passed to the server.""")
)
).tag(config=True)

handlers = List(
help=_("""Handlers appended to the server.""")
)
).tag(config=True)

default_url = Unicode('/', config=True,
help=_("The default URL to redirect to from `/`")
Expand Down

0 comments on commit 9915490

Please sign in to comment.