diff --git a/README.md b/README.md index 96172969..7d1fb353 100644 --- a/README.md +++ b/README.md @@ -32,8 +32,8 @@ There is [#reitit](https://clojurians.slack.com/messages/reitit/) in [Clojurians * `reitit-swagger` [Swagger2](https://swagger.io/) apidocs * `reitit-swagger-ui` Integrated [Swagger UI](https://github.com/swagger-api/swagger-ui) * `reitit-frontend` Tools for [frontend routing]((https://metosin.github.io/reitit/frontend/basics.html)) -* `reitit-http` http-routing with Pedestal-style Interceptors (WIP) -* `reitit-sieppari` support for [Sieppari](https://github.com/metosin/sieppari) Interceptors (WIP) +* `reitit-http` http-routing with Pedestal-style Interceptors +* `reitit-sieppari` support for [Sieppari](https://github.com/metosin/sieppari) Interceptors ## Latest version @@ -63,7 +63,7 @@ Optionally, the parts can be required separately: ;; frontend helpers [metosin/reitit-frontend "0.2.1"] -;; http with interceptors (WIP) +;; http with interceptors [metosin/reitit-http "0.2.1"] [metosin/reitit-sieppari "0.2.1"] ``` diff --git a/doc/README.md b/doc/README.md index d93d9edd..0f617593 100644 --- a/doc/README.md +++ b/doc/README.md @@ -23,8 +23,8 @@ Modules: * `reitit-swagger` [Swagger2](https://swagger.io/) apidocs * `reitit-swagger-ui` Integrated [Swagger UI](https://github.com/swagger-api/swagger-ui). * `reitit-frontend` Tools for [frontend routing](frontend/basics.md) -* `reitit-http` http-routing with Pedestal-style Interceptors (WIP) -* `reitit-sieppari` support for [Sieppari](https://github.com/metosin/sieppari) Interceptors (WIP) +* `reitit-http` http-routing with Pedestal-style Interceptors +* `reitit-sieppari` support for [Sieppari](https://github.com/metosin/sieppari) Interceptors ## Latest version @@ -54,7 +54,7 @@ Optionally, the parts can be required separately: ;; frontend helpers [metosin/reitit-frontend "0.2.1"] -;; http with interceptors (WIP) +;; http with interceptors [metosin/reitit-http "0.2.1"] [metosin/reitit-sieppari "0.2.1"] ``` diff --git a/doc/SUMMARY.md b/doc/SUMMARY.md index 6fb12af0..3dfea36a 100644 --- a/doc/SUMMARY.md +++ b/doc/SUMMARY.md @@ -41,7 +41,7 @@ * [Basics](frontend/basics.md) * [Browser integration](frontend/browser.md) -* [Controllers (WIP)](frontend/controllers.md) +* [Controllers](frontend/controllers.md) ## HTTP diff --git a/doc/cljdoc.edn b/doc/cljdoc.edn index a407d3a2..8ea31d14 100644 --- a/doc/cljdoc.edn +++ b/doc/cljdoc.edn @@ -38,7 +38,7 @@ ["Frontend" {} ["Basics" {:file "doc/frontend/basics.md"}] ["Browser integration" {:file "doc/frontend/browser.md"}] - ["Controllers (WIP)" {:file "doc/frontend/controllers.md"}]] + ["Controllers" {:file "doc/frontend/controllers.md"}]] ["HTTP" {} ["Interceptors" {:file "doc/http/interceptors.md"}] ["Default Interceptors" {:file "doc/http/default_interceptors.md"}]] diff --git a/doc/frontend/controllers.md b/doc/frontend/controllers.md index 999205a2..19a00003 100644 --- a/doc/frontend/controllers.md +++ b/doc/frontend/controllers.md @@ -1,4 +1,4 @@ -# Controllers (WIP) +# Controllers * https://github.com/metosin/reitit/tree/master/examples/frontend-controllers