mirror of
https://github.com/PrivateCaptcha/PrivateCaptcha.git
synced 2026-02-09 07:19:08 -06:00
47 lines
1.4 KiB
Go
47 lines
1.4 KiB
Go
package common
|
|
|
|
const (
|
|
PuzzleEndpoint = "puzzle"
|
|
EchoPuzzleEndpoint = "echopuzzle"
|
|
SiteVerifyEndpoint = "siteverify"
|
|
VerifyEndpoint = "verify"
|
|
LoginEndpoint = "login"
|
|
TwoFactorEndpoint = "2fa"
|
|
ResendEndpoint = "resend"
|
|
ErrorEndpoint = "error"
|
|
RegisterEndpoint = "signup"
|
|
OrgInviteEndpoint = "orginvite"
|
|
ExpiredEndpoint = "expired"
|
|
SettingsEndpoint = "settings"
|
|
LogoutEndpoint = "logout"
|
|
PropertyEndpoint = "property"
|
|
PropertiesEndpoint = "properties"
|
|
OrgEndpoint = "org"
|
|
OrganizationsEndpoint = "orgs"
|
|
DashboardEndpoint = "dashboard"
|
|
NewEndpoint = "new"
|
|
StatsEndpoint = "stats"
|
|
TabEndpoint = "tab"
|
|
ReportsEndpoint = "reports"
|
|
IntegrationsEndpoint = "integrations"
|
|
EditEndpoint = "edit"
|
|
DeleteEndpoint = "delete"
|
|
MembersEndpoint = "members"
|
|
GeneralEndpoint = "general"
|
|
EmailEndpoint = "email"
|
|
UserEndpoint = "user"
|
|
APIKeysEndpoint = "apikeys"
|
|
UsageEndpoint = "usage"
|
|
ReadyEndpoint = "ready"
|
|
LiveEndpoint = "live"
|
|
MoveEndpoint = "move"
|
|
TransferEndpoint = "transfer"
|
|
NotificationEndpoint = "notification"
|
|
SelfHostedEndpoint = "selfhosted"
|
|
ActivationEndpoint = "activation"
|
|
AuditLogsEndpoint = "auditlogs"
|
|
EventsEndpoint = "events"
|
|
ExportEndpoint = "export"
|
|
AsyncTaskEndpoint = "asynctask"
|
|
)
|