Liking cljdoc? Tell your friends :D

ClanHR's Auth Library Build Status

Clojars Project

Auth utilities on top of JWT and ring middlewares.

Install

Add the following dependency to your project.clj:

[clanhr/auth "0.4.0"]

Usage

The auth middleware should be applied to your Ring handler:

(:require 'clanhr.auth.auth-middleware :as auth)

(def app
  (-> handler
      (auth/run)))

Any request that don't have a valid JWT will be refused with an unauthorized response.

The api to create and validate tokens is given by token-for and valid? inside of clanhr.auth.core namespace.

Can you improve this documentation?Edit on GitHub

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close