mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-02-04 13:21:45 +00:00
15 lines
361 B
Go
15 lines
361 B
Go
package model
|
|
|
|
import datatype "github.com/pocket-id/pocket-id/backend/internal/model/types"
|
|
|
|
type ScimServiceProvider struct {
|
|
Base
|
|
|
|
Endpoint string `sortable:"true"`
|
|
Token datatype.EncryptedString
|
|
LastSyncedAt *datatype.DateTime `sortable:"true"`
|
|
|
|
OidcClientID string
|
|
OidcClient OidcClient `gorm:"foreignKey:OidcClientID;references:ID;"`
|
|
}
|