mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-05-07 17:19:57 +00:00
17 lines
739 B
Go
17 lines
739 B
Go
package portal
|
|
|
|
const (
|
|
PortalPagePath = "/portal"
|
|
PortalBootstrapPath = "/api/portal/bootstrap"
|
|
PortalDashboardPath = "/api/portal/dashboard"
|
|
PortalWorkspacePath = "/api/portal/workspaces/{tenant_id}"
|
|
PortalBillingPath = "/api/portal/billing"
|
|
PortalCommercialAPIBasePath = "/api/portal/commercial"
|
|
PortalCommercialAPIPath = "/api/portal/commercial/{commercial_path...}"
|
|
PortalCommercialProxyPath = PortalCommercialAPIBasePath + "/"
|
|
PortalLogoutPath = "/auth/logout"
|
|
PortalMagicLinkRequestPath = "/api/public/magic-link/request"
|
|
PortalSignupPath = "/signup"
|
|
PortalAccountAPIBasePath = "/api/accounts"
|
|
PortalAPIBasePath = "/api/portal"
|
|
)
|