Skip to content

Commit be284a2

Browse files
committed
Takedown page UI
1 parent e16529b commit be284a2

13 files changed

Lines changed: 850 additions & 40 deletions

File tree

kahuna/.prettierrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"trailingComma": "none"
3+
}

kahuna/conf/routes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
GET / controllers.KahunaController.index(ignored="")
66
GET /images/$id<[0-9a-z]+> controllers.KahunaController.index(id: String)
77
GET /images/$id<[0-9a-z]+>/crop controllers.KahunaController.index(id: String)
8+
GET /images/$id<[0-9a-z]+>/takedown controllers.KahunaController.index(id: String)
89
GET /search controllers.KahunaController.index(ignored="")
910
GET /upload controllers.KahunaController.index(ignored="")
1011
GET /quotas controllers.KahunaController.quotas

kahuna/global.d.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,14 @@ declare module '*.module.css' {
22
const classes: { readonly [key: string]: string }
33
export default classes
44
}
5+
6+
declare module '*.html' {
7+
const template: string;
8+
export default template;
9+
}
10+
11+
declare module '*.svg' {
12+
const content: string;
13+
export default content;
14+
}
15+

0 commit comments

Comments
 (0)