summaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/httpauth.pm
diff options
context:
space:
mode:
Diffstat (limited to 'IkiWiki/Plugin/httpauth.pm')
-rw-r--r--IkiWiki/Plugin/httpauth.pm9
1 files changed, 9 insertions, 0 deletions
diff --git a/IkiWiki/Plugin/httpauth.pm b/IkiWiki/Plugin/httpauth.pm
index d28b6d2d0..fc0cffb1e 100644
--- a/IkiWiki/Plugin/httpauth.pm
+++ b/IkiWiki/Plugin/httpauth.pm
@@ -7,9 +7,18 @@ use strict;
use IkiWiki 2.00;
sub import { #{{{
+ hook(type => "getsetup", id => "httpauth", call => \&getsetup);
hook(type => "auth", id => "httpauth", call => \&auth);
} # }}}
+sub getsetup () { #{{{
+ return
+ plugin => {
+ safe => 1,
+ rebuild => 0,
+ },
+} #}}}
+
sub auth ($$) { #{{{
my $cgi=shift;
my $session=shift;