mirror of
https://github.com/documize/community.git
synced 2025-07-19 13:19:43 +02:00
Display subscription information
This commit is contained in:
parent
53e4861ded
commit
9ee9526a47
6 changed files with 708 additions and 684 deletions
|
@ -11,7 +11,10 @@
|
|||
|
||||
package org
|
||||
|
||||
import "time"
|
||||
import (
|
||||
"github.com/documize/community/core/env"
|
||||
"time"
|
||||
)
|
||||
|
||||
// SitemapDocument details a document that can be exposed via Sitemap.
|
||||
type SitemapDocument struct {
|
||||
|
@ -24,16 +27,17 @@ type SitemapDocument struct {
|
|||
|
||||
// SiteMeta holds information associated with an Organization.
|
||||
type SiteMeta struct {
|
||||
OrgID string `json:"orgId"`
|
||||
Title string `json:"title"`
|
||||
Message string `json:"message"`
|
||||
URL string `json:"url"`
|
||||
AllowAnonymousAccess bool `json:"allowAnonymousAccess"`
|
||||
AuthProvider string `json:"authProvider"`
|
||||
AuthConfig string `json:"authConfig"`
|
||||
Version string `json:"version"`
|
||||
MaxTags int `json:"maxTags"`
|
||||
Edition string `json:"edition"`
|
||||
Valid bool `json:"valid"`
|
||||
ConversionEndpoint string `json:"conversionEndpoint"`
|
||||
OrgID string `json:"orgId"`
|
||||
Title string `json:"title"`
|
||||
Message string `json:"message"`
|
||||
URL string `json:"url"`
|
||||
AllowAnonymousAccess bool `json:"allowAnonymousAccess"`
|
||||
AuthProvider string `json:"authProvider"`
|
||||
AuthConfig string `json:"authConfig"`
|
||||
Version string `json:"version"`
|
||||
MaxTags int `json:"maxTags"`
|
||||
Edition string `json:"edition"`
|
||||
Valid bool `json:"valid"`
|
||||
ConversionEndpoint string `json:"conversionEndpoint"`
|
||||
License env.License `json:"license"`
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue