blob: 6206e5c3866532af5208343431688956d5871b23 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
use Cro::HTTP::Router;
use Cro::WebApp::Template;
use Crater::Gallery;
use Crater::Routes::Auth;
use Crater::Routes::Gallery;
sub routes(
Crater::Gallery :$gallery!, #= gallery object
Str :$password!, #= password for authentication
) is export {
template-location 'templates/';
route {
after { redirect '/login', :see-other if .status == 401 };
include auth-routes(:$password);
include gallery-routes(:$gallery);
get -> 'resources', 'css', *@path {
static 'resources', 'css', @path;
}
}
}
|