nitter/src/routes/unsupported.nim

20 lines
474 B
Nim
Raw Normal View History

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:
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
get "/about/feature": feature()
get "/intent/?@i?": feature()
get "/login/?@i?": feature()
get "/@name/lists/?": feature()
2019-09-23 14:12:20 +00:00
get "/i/@i?/?@j?":
2020-06-01 00:22:56 +00:00
cond @"i" notin ["status", "lists"]
feature()