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