2021-12-27 01:37:38 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
2019-09-23 14:12:20 +00:00
|
|
|
import jester
|
|
|
|
|
|
|
|
import router_utils
|
|
|
|
import ../types
|
|
|
|
import ../views/[general, about]
|
|
|
|
|
|
|
|
proc createUnsupportedRouter*(cfg: Config) =
|
|
|
|
router unsupported:
|
2020-06-01 03:31:11 +00:00
|
|
|
template feature {.dirty.} =
|
2020-06-09 14:45:21 +00:00
|
|
|
resp renderMain(renderFeature(), request, cfg, themePrefs())
|
2019-09-23 14:12:20 +00:00
|
|
|
|
2020-06-01 03:31:11 +00:00
|
|
|
get "/about/feature": feature()
|
|
|
|
get "/login/?@i?": feature()
|
|
|
|
get "/@name/lists/?": feature()
|
2019-09-23 14:12:20 +00:00
|
|
|
|
2021-10-04 10:03:40 +00:00
|
|
|
get "/intent/?@i?":
|
|
|
|
cond @"i" notin ["user"]
|
|
|
|
feature()
|
|
|
|
|
2019-09-23 14:12:20 +00:00
|
|
|
get "/i/@i?/?@j?":
|
2021-10-04 10:03:40 +00:00
|
|
|
cond @"i" notin ["status", "lists" , "user"]
|
2020-06-01 03:31:11 +00:00
|
|
|
feature()
|