37 lines
677 B
YAML
37 lines
677 B
YAML
import:
|
|
- github.com/cortezaproject/corteza-server/system/types
|
|
|
|
types:
|
|
singular: Credentials
|
|
plural: Credentials
|
|
|
|
fields:
|
|
- { field: ID }
|
|
- { field: OwnerID }
|
|
- { field: Kind }
|
|
- { field: Label }
|
|
- { field: Credentials }
|
|
- { field: Meta }
|
|
- { field: LastUsedAt }
|
|
- { field: ExpiresAt }
|
|
- { field: CreatedAt }
|
|
- { field: UpdatedAt }
|
|
- { field: DeletedAt }
|
|
|
|
lookups:
|
|
- fields: [ ID ]
|
|
description: |-
|
|
searches for credentials by ID
|
|
|
|
It returns credentials even if deleted
|
|
|
|
search:
|
|
enablePaging: false
|
|
enableSorting: false
|
|
enableFilterCheckFunction: false
|
|
|
|
rdbms:
|
|
alias: crd
|
|
table: credentials
|
|
customFilterConverter: true
|