# HG changeset patch # User Johannes Bornhold # Date 2016-06-03 09:24:29 # Node ID 36c264011c13e90f5463ed6dc8ecd94dc338bd1d # Parent bfb1a9cf7d9d652672fff67b63028e67f30f6f09 authn: Add rhodecode token auth plugin to setup.py diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -219,6 +219,7 @@ setup( 'ldap=rhodecode.authentication.plugins.auth_ldap:plugin_factory', 'pam=rhodecode.authentication.plugins.auth_pam:plugin_factory', 'rhodecode=rhodecode.authentication.plugins.auth_rhodecode:plugin_factory', + 'token=rhodecode.authentication.plugins.auth_token:plugin_factory', ], 'paste.app_factory': [ 'main=rhodecode.config.middleware:make_pyramid_app',