Files
espocrm/application/Espo/Resources/metadata/entityDefs/AuthLogRecord.json
2026-01-19 17:46:06 +01:00

112 lines
2.9 KiB
JSON

{
"fields": {
"username": {
"type": "varchar",
"readOnly": true,
"maxLength": 100
},
"portal": {
"type": "link",
"readOnly": true
},
"user": {
"type": "link",
"readOnly": true
},
"authToken": {
"type": "link",
"readOnly": true
},
"ipAddress": {
"type": "varchar",
"maxLength": 45,
"readOnly": true
},
"createdAt": {
"type": "datetime",
"readOnly": true,
"hasSeconds": true
},
"isDenied": {
"type": "bool",
"readOnly": true
},
"denialReason": {
"type": "enum",
"options": [
"",
"CREDENTIALS",
"INACTIVE_USER",
"IS_PORTAL_USER",
"IS_NOT_PORTAL_USER",
"USER_IS_NOT_IN_PORTAL",
"IS_SYSTEM_USER",
"FORBIDDEN"
],
"readOnly": true
},
"requestTime": {
"type": "float",
"readOnly": true
},
"requestUrl": {
"type": "varchar",
"readOnly": true
},
"requestMethod": {
"type": "varchar",
"readOnly": true,
"maxLength": 15
},
"authTokenIsActive": {
"type": "foreign",
"link": "authToken",
"field": "isActive",
"readOnly": true,
"view": "views/fields/foreign-bool"
},
"authenticationMethod": {
"type": "enum",
"view": "views/admin/auth-log-record/fields/authentication-method",
"translation": "Settings.options.authenticationMethod"
}
},
"links": {
"user": {
"type": "belongsTo",
"entity": "User"
},
"portal": {
"type": "belongsTo",
"entity": "Portal"
},
"authToken": {
"type": "belongsTo",
"entity": "AuthToken",
"foreignName": "id"
},
"actionHistoryRecords": {
"type": "hasMany",
"entity": "ActionHistoryRecord",
"foreign": "authLogRecord"
}
},
"collection": {
"orderBy": "requestTime",
"order": "desc",
"textFilterFields": ["ipAddress", "username"]
},
"indexes": {
"ipAddress": {
"columns": ["ipAddress"]
},
"ipAddressRequestTime": {
"columns": ["ipAddress", "requestTime"]
},
"requestTime": {
"columns": ["requestTime"]
}
},
"hooksDisabled": true
}