saml_integration.go 249 B

1234567891011121314151617
  1. package saml
  2. import (
  3. "github.com/porter-dev/porter/api/types"
  4. "gorm.io/gorm"
  5. )
  6. type SAMLIntegration struct {
  7. gorm.Model
  8. ProjectID uint
  9. Domains string
  10. Type types.IDPType
  11. SignOnURL string
  12. CertificateData []byte
  13. }