mirror of
https://github.com/paralus/paralus.git
synced 2026-05-08 17:36:56 +00:00
24 lines
1.1 KiB
Go
24 lines
1.1 KiB
Go
package models
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/google/uuid"
|
|
"github.com/uptrace/bun"
|
|
)
|
|
|
|
type ResourcePermission struct {
|
|
bun.BaseModel `bun:"table:authsrv_resourcepermission,alias:resourcepermission"`
|
|
|
|
ID uuid.UUID `bun:"id,type:uuid,pk,default:uuid_generate_v4()"`
|
|
Name string `bun:"name,notnull" json:"name"`
|
|
BaseUrl string `bun:"base_url,notnull" json:"base_url"`
|
|
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,default:false"`
|
|
ResourceUrls []map[string]interface{} `bun:"resource_urls,type:jsonb" json:"resource_urls"`
|
|
ResourceActionUrls []map[string]interface{} `bun:"resource_action_urls,type:jsonb" json:"resource_action_urls"`
|
|
Scope string `bun:"scope,notnull"`
|
|
}
|