29 lines
603 B
Go
29 lines
603 B
Go
// Copyright (C) 2020 Marius Schellenberger
|
|
|
|
package core
|
|
|
|
const (
|
|
IndexPage = "Index"
|
|
WikiSection = "wiki"
|
|
|
|
IndexURI = WikiSection + "/" + IndexPage
|
|
|
|
RootURI = "/"
|
|
WikiURI = "/wiki"
|
|
LoginURI = "/login"
|
|
LogoutURI = "/logout"
|
|
TotpURI = "/totp"
|
|
SectionsURI = "/sections"
|
|
SectionURI = "/section"
|
|
SearchURI = "/search"
|
|
StatsURI = "/stats"
|
|
NewURI = "/new"
|
|
BlacklistURI = "/blacklist"
|
|
UsersURI = "/users"
|
|
UserURI = "/user"
|
|
ViewURI = "/view"
|
|
|
|
BootstrapCSS = "/bootstrap.css"
|
|
CustomCSS = "/custom.css"
|
|
Favicon = "/favicon.ico"
|
|
)
|