mirror of
https://github.com/paralus/paralus.git
synced 2026-05-06 00:17:19 +00:00
* restructure rcloud-base as a single base controller * updated master.rest * moved sentry from internal to pkg as it is used by relay * removing unused rpc and it's dependencies * Fix usermgmt tests * Don't redefine variables in rest file Co-authored-by: Abin Simon <abin.simon@rafay.co>
35 lines
1.7 KiB
Go
35 lines
1.7 KiB
Go
package models
|
|
|
|
import (
|
|
"encoding/json"
|
|
"time"
|
|
|
|
"github.com/google/uuid"
|
|
"github.com/uptrace/bun"
|
|
)
|
|
|
|
type Partner struct {
|
|
bun.BaseModel `bun:"table:authsrv_partner,alias:partner"`
|
|
|
|
ID uuid.UUID `bun:"id,type:uuid,pk,default:uuid_generate_v4()"`
|
|
Name string `bun:"name,notnull"`
|
|
Description string `bun:"description,notnull"`
|
|
CreatedAt time.Time `bun:"created_at,notnull,default:current_timestamp"`
|
|
ModifiedAt time.Time `bun:"modified_at,notnull,default:current_timestamp"`
|
|
Trash bool `bun:"trash,notnull"`
|
|
Settings json.RawMessage `bun:"settings,notnull,type:jsonb"`
|
|
Host string `bun:"host,notnull"`
|
|
Domain string `bun:"domain,notnull"`
|
|
TosLink string `bun:"tos_link,notnull"`
|
|
LogoLink string `bun:"logo_link,notnull"`
|
|
NotificationEmail string `bun:"notification_email,notnull"`
|
|
ParentId uuid.UUID `bun:"parent_id,type:uuid"`
|
|
HelpdeskEmail string `bun:"partner_helpdesk_email,notnull"`
|
|
ProductName string `bun:"partner_product_name"`
|
|
SupportTeamName string `bun:"support_team_name,notnull"`
|
|
OpsHost string `bun:"ops_host,notnull"`
|
|
FavIconLink string `bun:"fav_icon_link,notnull"`
|
|
IsTOTPEnabled bool `bun:"is_totp_enabled,notnull"`
|
|
IsSyntheticPartnerEnabled bool `bun:"is_synthetic_partner_enabled,notnull"`
|
|
}
|