31 lines
597 B
Go
31 lines
597 B
Go
// Copyright (C) 2019 Marius Schellenberger
|
|
|
|
package core
|
|
|
|
const (
|
|
IndexURI = "/"
|
|
TotpURI = "/totp"
|
|
LoginURI = "/login"
|
|
LogoutURI = "/logout"
|
|
SearchURI = "/search"
|
|
LogsURI = "/logs"
|
|
TagsURI = "/tags"
|
|
StatsURI = "/stats"
|
|
UserURI = "/user"
|
|
|
|
RawPrefix = "/raw"
|
|
IndexPrefix = "/index"
|
|
RetagPrefix = "/retag"
|
|
UploadPrefix = "/upload"
|
|
NewPrefix = "/new"
|
|
MovePrefix = "/move"
|
|
TagsPrefix = "/tags"
|
|
DeletePrefix = "/delete"
|
|
WebDavPrefix = "/webdav"
|
|
|
|
Favicon = "/favicon.ico"
|
|
BootstrapCSS = "/bootstrap.css"
|
|
CustomCSS = "/custom.css"
|
|
|
|
DataDir = "data"
|
|
)
|