summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBessenyei Balázs Donát <bessbd@apache.org>2021-06-01 14:59:18 +0200
committerBessenyei Balázs Donát <bessbd@gmail.com>2021-06-01 14:59:18 +0200
commit72ff5e11aea9a777cab80f2242fd6a4b15ca1f38 (patch)
tree9a76e9d76d28f31993555a06764c828cffc2d5ff
parenta875cbaf818230633f1b2acd57945a23d1b62f38 (diff)
downloadcouchdb-72ff5e11aea9a777cab80f2242fd6a4b15ca1f38.tar.gz
Perform a manual formatting in couch_httpd_auth
-rw-r--r--src/couch/src/couch_httpd_auth.erl39
1 files changed, 30 insertions, 9 deletions
diff --git a/src/couch/src/couch_httpd_auth.erl b/src/couch/src/couch_httpd_auth.erl
index 93b00bd1a..5c0f24eeb 100644
--- a/src/couch/src/couch_httpd_auth.erl
+++ b/src/couch/src/couch_httpd_auth.erl
@@ -19,17 +19,38 @@
-export([party_mode_handler/1]).
--export([default_authentication_handler/1, default_authentication_handler/2,
- special_test_authentication_handler/1]).
--export([cookie_authentication_handler/1, cookie_authentication_handler/2]).
+-export([
+ default_authentication_handler/1,
+ default_authentication_handler/2,
+ special_test_authentication_handler/1
+]).
+-export([
+ cookie_authentication_handler/1,
+ cookie_authentication_handler/2
+]).
-export([null_authentication_handler/1]).
--export([proxy_authentication_handler/1, proxy_authentification_handler/1]).
+-export([
+ proxy_authentication_handler/1,
+ proxy_authentification_handler/1
+]).
-export([cookie_auth_header/2]).
--export([handle_session_req/1, handle_session_req/2]).
-
--export([authenticate/2, verify_totp/2]).
--export([ensure_cookie_auth_secret/0, make_cookie_time/0]).
--export([cookie_auth_cookie/4, cookie_scheme/1]).
+-export([
+ handle_session_req/1,
+ handle_session_req/2
+]).
+
+-export([
+ authenticate/2,
+ verify_totp/2
+]).
+-export([
+ ensure_cookie_auth_secret/0,
+ make_cookie_time/0
+]).
+-export([
+ cookie_auth_cookie/4,
+ cookie_scheme/1
+]).
-export([maybe_value/3]).
-export([jwt_authentication_handler/1]).