Add method to record.

This commit is contained in:
Gucheng Wang 2021-11-09 23:24:13 +08:00
parent 8d6756fe9a
commit 102e22f2c7
9 changed files with 143 additions and 22 deletions

View File

@ -31,6 +31,7 @@ type Record struct {
Organization string `xorm:"varchar(100)" json:"organization"` Organization string `xorm:"varchar(100)" json:"organization"`
ClientIp string `xorm:"varchar(100)" json:"clientIp"` ClientIp string `xorm:"varchar(100)" json:"clientIp"`
User string `xorm:"varchar(100)" json:"user"` User string `xorm:"varchar(100)" json:"user"`
Method string `xorm:"varchar(100)" json:"method"`
RequestUri string `xorm:"varchar(1000)" json:"requestUri"` RequestUri string `xorm:"varchar(1000)" json:"requestUri"`
Action string `xorm:"varchar(1000)" json:"action"` Action string `xorm:"varchar(1000)" json:"action"`
@ -45,8 +46,9 @@ func NewRecord(ctx *context.Context) *Record {
Name: util.GenerateId(), Name: util.GenerateId(),
CreatedTime: util.GetCurrentTime(), CreatedTime: util.GetCurrentTime(),
ClientIp: ip, ClientIp: ip,
RequestUri: ctx.Request.RequestURI,
User: "", User: "",
Method: ctx.Request.Method,
RequestUri: ctx.Request.RequestURI,
Action: action, Action: action,
IsTriggered: false, IsTriggered: false,
} }

View File

@ -129,6 +129,13 @@ class RecordListPage extends React.Component {
) )
} }
}, },
{
title: i18next.t("general:Method"),
dataIndex: 'method',
key: 'method',
width: '100px',
sorter: (a, b) => a.method.localeCompare(b.method),
},
{ {
title: i18next.t("general:Request URI"), title: i18next.t("general:Request URI"),
dataIndex: 'requestUri', dataIndex: 'requestUri',

View File

@ -60,7 +60,7 @@
"Avatar - Tooltip": "Avatar to show to others", "Avatar - Tooltip": "Avatar to show to others",
"Back Home": "Back Home", "Back Home": "Back Home",
"Captcha": "Captcha", "Captcha": "Captcha",
"Client ip": "Client ip", "Client IP": "Client IP",
"Created time": "Created time", "Created time": "Created time",
"Default avatar": "Default avatar", "Default avatar": "Default avatar",
"Default avatar - Tooltip": "default avatar", "Default avatar - Tooltip": "default avatar",
@ -79,10 +79,14 @@
"Forget URL - Tooltip": "Unique string-style identifier", "Forget URL - Tooltip": "Unique string-style identifier",
"Home": "Home", "Home": "Home",
"Home - Tooltip": "Application homepage", "Home - Tooltip": "Application homepage",
"ID": "ID",
"ID - Tooltip": "random string", "ID - Tooltip": "random string",
"LDAPs": "LDAPs", "LDAPs": "LDAPs",
"LDAPs - Tooltip": "LDAPs - Tooltip", "LDAPs - Tooltip": "LDAPs - Tooltip",
"Logo - Tooltip": "App's image tag", "Logo - Tooltip": "App's image tag",
"Master password": "Master password",
"Master password - Tooltip": "Master password - Tooltip",
"Method": "Method",
"Name": "Name", "Name": "Name",
"Name - Tooltip": "Unique string-style identifier", "Name - Tooltip": "Unique string-style identifier",
"OAuth providers": "OAuth providers", "OAuth providers": "OAuth providers",
@ -106,7 +110,7 @@
"Providers": "Providers", "Providers": "Providers",
"Providers - Tooltip": "List of third-party applications that can be used to log in", "Providers - Tooltip": "List of third-party applications that can be used to log in",
"Records": "Records", "Records": "Records",
"Request uri": "Request uri", "Request URI": "Request URI",
"Resources": "Resources", "Resources": "Resources",
"Save": "Save", "Save": "Save",
"Scope": "Scope", "Scope": "Scope",
@ -127,9 +131,9 @@
"User containers": "User containers", "User containers": "User containers",
"User type": "User type", "User type": "User type",
"User type - Tooltip": "Permission role owned by the user", "User type - Tooltip": "Permission role owned by the user",
"Username": "Username",
"Users": "Users", "Users": "Users",
"Users under all organizations": "Users under all organizations", "Users under all organizations": "Users under all organizations",
"Webhooks": "Webhooks",
"{total} in total": "{total} in total" "{total} in total": "{total} in total"
}, },
"ldap": { "ldap": {
@ -244,6 +248,9 @@
"rule": "rule", "rule": "rule",
"visible": "visible" "visible": "visible"
}, },
"record": {
"Is Triggered": "Is Triggered"
},
"resource": { "resource": {
"Application": "Application", "Application": "Application",
"Copy Link": "Copy Link", "Copy Link": "Copy Link",
@ -339,5 +346,14 @@
"Unlink": "Unlink", "Unlink": "Unlink",
"Upload a photo": "Upload a photo", "Upload a photo": "Upload a photo",
"input password": "input password" "input password": "input password"
},
"webhook": {
"Content type": "Content type",
"Content type - Tooltip": "Content type - Tooltip",
"Edit Webhook": "Edit Webhook",
"Events": "Events",
"Events - Tooltip": "Events - Tooltip",
"URL": "URL",
"URL - Tooltip": "URL - Tooltip"
} }
} }

View File

@ -60,7 +60,7 @@
"Avatar - Tooltip": "Avatar - Tooltip", "Avatar - Tooltip": "Avatar - Tooltip",
"Back Home": "Back Home", "Back Home": "Back Home",
"Captcha": "Captcha", "Captcha": "Captcha",
"Client ip": "Client ip", "Client IP": "Client IP",
"Created time": "Created time", "Created time": "Created time",
"Default avatar": "Default avatar", "Default avatar": "Default avatar",
"Default avatar - Tooltip": "Default avatar - Tooltip", "Default avatar - Tooltip": "Default avatar - Tooltip",
@ -79,10 +79,14 @@
"Forget URL - Tooltip": "Forget URL - Tooltip", "Forget URL - Tooltip": "Forget URL - Tooltip",
"Home": "Home", "Home": "Home",
"Home - Tooltip": "Home - Tooltip", "Home - Tooltip": "Home - Tooltip",
"ID": "ID",
"ID - Tooltip": "ID - Tooltip", "ID - Tooltip": "ID - Tooltip",
"LDAPs": "LDAPs", "LDAPs": "LDAPs",
"LDAPs - Tooltip": "LDAPs - Tooltip", "LDAPs - Tooltip": "LDAPs - Tooltip",
"Logo - Tooltip": "Logo - Tooltip", "Logo - Tooltip": "Logo - Tooltip",
"Master password": "Master password",
"Master password - Tooltip": "Master password - Tooltip",
"Method": "Method",
"Name": "Name", "Name": "Name",
"Name - Tooltip": "Name - Tooltip", "Name - Tooltip": "Name - Tooltip",
"OAuth providers": "OAuth providers", "OAuth providers": "OAuth providers",
@ -106,7 +110,7 @@
"Providers": "Providers", "Providers": "Providers",
"Providers - Tooltip": "Providers - Tooltip", "Providers - Tooltip": "Providers - Tooltip",
"Records": "Records", "Records": "Records",
"Request uri": "Request uri", "Request URI": "Request URI",
"Resources": "Resources", "Resources": "Resources",
"Save": "Save", "Save": "Save",
"Scope": "Scope", "Scope": "Scope",
@ -127,9 +131,9 @@
"User containers": "User containers", "User containers": "User containers",
"User type": "User type", "User type": "User type",
"User type - Tooltip": "User type - Tooltip", "User type - Tooltip": "User type - Tooltip",
"Username": "Username",
"Users": "Users", "Users": "Users",
"Users under all organizations": "Users under all organizations", "Users under all organizations": "Users under all organizations",
"Webhooks": "Webhooks",
"{total} in total": "{total} in total" "{total} in total": "{total} in total"
}, },
"ldap": { "ldap": {
@ -244,6 +248,9 @@
"rule": "rule", "rule": "rule",
"visible": "visible" "visible": "visible"
}, },
"record": {
"Is Triggered": "Is Triggered"
},
"resource": { "resource": {
"Application": "Application", "Application": "Application",
"Copy Link": "Copy Link", "Copy Link": "Copy Link",
@ -339,5 +346,14 @@
"Unlink": "Unlink", "Unlink": "Unlink",
"Upload a photo": "Upload a photo", "Upload a photo": "Upload a photo",
"input password": "input password" "input password": "input password"
},
"webhook": {
"Content type": "Content type",
"Content type - Tooltip": "Content type - Tooltip",
"Edit Webhook": "Edit Webhook",
"Events": "Events",
"Events - Tooltip": "Events - Tooltip",
"URL": "URL",
"URL - Tooltip": "URL - Tooltip"
} }
} }

View File

@ -60,7 +60,7 @@
"Avatar - Tooltip": "Avatar to show to others", "Avatar - Tooltip": "Avatar to show to others",
"Back Home": "Back Home", "Back Home": "Back Home",
"Captcha": "Captcha", "Captcha": "Captcha",
"Client ip": "Client ip", "Client IP": "Client IP",
"Created time": "Created time", "Created time": "Created time",
"Default avatar": "Default avatar", "Default avatar": "Default avatar",
"Default avatar - Tooltip": "default avatar", "Default avatar - Tooltip": "default avatar",
@ -79,10 +79,14 @@
"Forget URL - Tooltip": "Unique string-style identifier", "Forget URL - Tooltip": "Unique string-style identifier",
"Home": "Home", "Home": "Home",
"Home - Tooltip": "Application homepage", "Home - Tooltip": "Application homepage",
"ID": "ID",
"ID - Tooltip": "random string", "ID - Tooltip": "random string",
"LDAPs": "LDAPs", "LDAPs": "LDAPs",
"LDAPs - Tooltip": "LDAPs - Tooltip", "LDAPs - Tooltip": "LDAPs - Tooltip",
"Logo - Tooltip": "App's image tag", "Logo - Tooltip": "App's image tag",
"Master password": "Master password",
"Master password - Tooltip": "Master password - Tooltip",
"Method": "Method",
"Name": "Name", "Name": "Name",
"Name - Tooltip": "Unique string-style identifier", "Name - Tooltip": "Unique string-style identifier",
"OAuth providers": "OAuth providers", "OAuth providers": "OAuth providers",
@ -106,7 +110,7 @@
"Providers": "Providers", "Providers": "Providers",
"Providers - Tooltip": "List of third-party applications that can be used to log in", "Providers - Tooltip": "List of third-party applications that can be used to log in",
"Records": "Records", "Records": "Records",
"Request uri": "Request uri", "Request URI": "Request URI",
"Resources": "Resources", "Resources": "Resources",
"Save": "Save", "Save": "Save",
"Scope": "Scope", "Scope": "Scope",
@ -127,9 +131,9 @@
"User containers": "User containers", "User containers": "User containers",
"User type": "User type", "User type": "User type",
"User type - Tooltip": "Permission role owned by the user", "User type - Tooltip": "Permission role owned by the user",
"Username": "Username",
"Users": "Users", "Users": "Users",
"Users under all organizations": "Users under all organizations", "Users under all organizations": "Users under all organizations",
"Webhooks": "Webhooks",
"{total} in total": "{total} in total" "{total} in total": "{total} in total"
}, },
"ldap": { "ldap": {
@ -244,6 +248,9 @@
"rule": "rule", "rule": "rule",
"visible": "visible" "visible": "visible"
}, },
"record": {
"Is Triggered": "Is Triggered"
},
"resource": { "resource": {
"Application": "Application", "Application": "Application",
"Copy Link": "Copy Link", "Copy Link": "Copy Link",
@ -339,5 +346,14 @@
"Unlink": "Unlink", "Unlink": "Unlink",
"Upload a photo": "Upload a photo", "Upload a photo": "Upload a photo",
"input password": "input password" "input password": "input password"
},
"webhook": {
"Content type": "Content type",
"Content type - Tooltip": "Content type - Tooltip",
"Edit Webhook": "Edit Webhook",
"Events": "Events",
"Events - Tooltip": "Events - Tooltip",
"URL": "URL",
"URL - Tooltip": "URL - Tooltip"
} }
} }

View File

@ -60,7 +60,7 @@
"Avatar - Tooltip": "Avatar to show to others", "Avatar - Tooltip": "Avatar to show to others",
"Back Home": "Back Home", "Back Home": "Back Home",
"Captcha": "Captcha", "Captcha": "Captcha",
"Client ip": "Client ip", "Client IP": "Client IP",
"Created time": "Created time", "Created time": "Created time",
"Default avatar": "Default avatar", "Default avatar": "Default avatar",
"Default avatar - Tooltip": "default avatar", "Default avatar - Tooltip": "default avatar",
@ -79,10 +79,14 @@
"Forget URL - Tooltip": "Unique string-style identifier", "Forget URL - Tooltip": "Unique string-style identifier",
"Home": "Home", "Home": "Home",
"Home - Tooltip": "Application homepage", "Home - Tooltip": "Application homepage",
"ID": "ID",
"ID - Tooltip": "random string", "ID - Tooltip": "random string",
"LDAPs": "LDAPs", "LDAPs": "LDAPs",
"LDAPs - Tooltip": "LDAPs - Tooltip", "LDAPs - Tooltip": "LDAPs - Tooltip",
"Logo - Tooltip": "App's image tag", "Logo - Tooltip": "App's image tag",
"Master password": "Master password",
"Master password - Tooltip": "Master password - Tooltip",
"Method": "Method",
"Name": "Name", "Name": "Name",
"Name - Tooltip": "Unique string-style identifier", "Name - Tooltip": "Unique string-style identifier",
"OAuth providers": "OAuth providers", "OAuth providers": "OAuth providers",
@ -106,7 +110,7 @@
"Providers": "Providers", "Providers": "Providers",
"Providers - Tooltip": "List of third-party applications that can be used to log in", "Providers - Tooltip": "List of third-party applications that can be used to log in",
"Records": "Records", "Records": "Records",
"Request uri": "Request uri", "Request URI": "Request URI",
"Resources": "Resources", "Resources": "Resources",
"Save": "Save", "Save": "Save",
"Scope": "Scope", "Scope": "Scope",
@ -127,9 +131,9 @@
"User containers": "User containers", "User containers": "User containers",
"User type": "User type", "User type": "User type",
"User type - Tooltip": "Permission role owned by the user", "User type - Tooltip": "Permission role owned by the user",
"Username": "Username",
"Users": "Users", "Users": "Users",
"Users under all organizations": "Users under all organizations", "Users under all organizations": "Users under all organizations",
"Webhooks": "Webhooks",
"{total} in total": "{total} in total" "{total} in total": "{total} in total"
}, },
"ldap": { "ldap": {
@ -244,6 +248,9 @@
"rule": "rule", "rule": "rule",
"visible": "visible" "visible": "visible"
}, },
"record": {
"Is Triggered": "Is Triggered"
},
"resource": { "resource": {
"Application": "Application", "Application": "Application",
"Copy Link": "Copy Link", "Copy Link": "Copy Link",
@ -339,5 +346,14 @@
"Unlink": "Unlink", "Unlink": "Unlink",
"Upload a photo": "Upload a photo", "Upload a photo": "Upload a photo",
"input password": "input password" "input password": "input password"
},
"webhook": {
"Content type": "Content type",
"Content type - Tooltip": "Content type - Tooltip",
"Edit Webhook": "Edit Webhook",
"Events": "Events",
"Events - Tooltip": "Events - Tooltip",
"URL": "URL",
"URL - Tooltip": "URL - Tooltip"
} }
} }

View File

@ -60,7 +60,7 @@
"Avatar - Tooltip": "Avatar to show to others", "Avatar - Tooltip": "Avatar to show to others",
"Back Home": "Back Home", "Back Home": "Back Home",
"Captcha": "Captcha", "Captcha": "Captcha",
"Client ip": "Client ip", "Client IP": "Client IP",
"Created time": "Created time", "Created time": "Created time",
"Default avatar": "Default avatar", "Default avatar": "Default avatar",
"Default avatar - Tooltip": "default avatar", "Default avatar - Tooltip": "default avatar",
@ -79,10 +79,14 @@
"Forget URL - Tooltip": "Unique string-style identifier", "Forget URL - Tooltip": "Unique string-style identifier",
"Home": "Home", "Home": "Home",
"Home - Tooltip": "Application homepage", "Home - Tooltip": "Application homepage",
"ID": "ID",
"ID - Tooltip": "random string", "ID - Tooltip": "random string",
"LDAPs": "LDAPs", "LDAPs": "LDAPs",
"LDAPs - Tooltip": "LDAPs - Tooltip", "LDAPs - Tooltip": "LDAPs - Tooltip",
"Logo - Tooltip": "App's image tag", "Logo - Tooltip": "App's image tag",
"Master password": "Master password",
"Master password - Tooltip": "Master password - Tooltip",
"Method": "Method",
"Name": "Name", "Name": "Name",
"Name - Tooltip": "Unique string-style identifier", "Name - Tooltip": "Unique string-style identifier",
"OAuth providers": "OAuth providers", "OAuth providers": "OAuth providers",
@ -106,7 +110,7 @@
"Providers": "Providers", "Providers": "Providers",
"Providers - Tooltip": "List of third-party applications that can be used to log in", "Providers - Tooltip": "List of third-party applications that can be used to log in",
"Records": "Records", "Records": "Records",
"Request uri": "Request uri", "Request URI": "Request URI",
"Resources": "Resources", "Resources": "Resources",
"Save": "Save", "Save": "Save",
"Scope": "Scope", "Scope": "Scope",
@ -127,9 +131,9 @@
"User containers": "User containers", "User containers": "User containers",
"User type": "User type", "User type": "User type",
"User type - Tooltip": "Permission role owned by the user", "User type - Tooltip": "Permission role owned by the user",
"Username": "Username",
"Users": "Users", "Users": "Users",
"Users under all organizations": "Users under all organizations", "Users under all organizations": "Users under all organizations",
"Webhooks": "Webhooks",
"{total} in total": "{total} in total" "{total} in total": "{total} in total"
}, },
"ldap": { "ldap": {
@ -244,6 +248,9 @@
"rule": "rule", "rule": "rule",
"visible": "visible" "visible": "visible"
}, },
"record": {
"Is Triggered": "Is Triggered"
},
"resource": { "resource": {
"Application": "Application", "Application": "Application",
"Copy Link": "Copy Link", "Copy Link": "Copy Link",
@ -339,5 +346,14 @@
"Unlink": "Unlink", "Unlink": "Unlink",
"Upload a photo": "Upload a photo", "Upload a photo": "Upload a photo",
"input password": "input password" "input password": "input password"
},
"webhook": {
"Content type": "Content type",
"Content type - Tooltip": "Content type - Tooltip",
"Edit Webhook": "Edit Webhook",
"Events": "Events",
"Events - Tooltip": "Events - Tooltip",
"URL": "URL",
"URL - Tooltip": "URL - Tooltip"
} }
} }

View File

@ -60,7 +60,7 @@
"Avatar - Tooltip": "Avatar to show to others", "Avatar - Tooltip": "Avatar to show to others",
"Back Home": "Back Home", "Back Home": "Back Home",
"Captcha": "Captcha", "Captcha": "Captcha",
"Client ip": "Client ip", "Client IP": "Client IP",
"Created time": "Created time", "Created time": "Created time",
"Default avatar": "Default avatar", "Default avatar": "Default avatar",
"Default avatar - Tooltip": "default avatar", "Default avatar - Tooltip": "default avatar",
@ -79,10 +79,14 @@
"Forget URL - Tooltip": "Unique string-style identifier", "Forget URL - Tooltip": "Unique string-style identifier",
"Home": "Home", "Home": "Home",
"Home - Tooltip": "Application homepage", "Home - Tooltip": "Application homepage",
"ID": "ID",
"ID - Tooltip": "random string", "ID - Tooltip": "random string",
"LDAPs": "LDAPs", "LDAPs": "LDAPs",
"LDAPs - Tooltip": "LDAPs - Tooltip", "LDAPs - Tooltip": "LDAPs - Tooltip",
"Logo - Tooltip": "App's image tag", "Logo - Tooltip": "App's image tag",
"Master password": "Master password",
"Master password - Tooltip": "Master password - Tooltip",
"Method": "Method",
"Name": "Name", "Name": "Name",
"Name - Tooltip": "Unique string-style identifier", "Name - Tooltip": "Unique string-style identifier",
"OAuth providers": "OAuth providers", "OAuth providers": "OAuth providers",
@ -106,7 +110,7 @@
"Providers": "Providers", "Providers": "Providers",
"Providers - Tooltip": "List of third-party applications that can be used to log in", "Providers - Tooltip": "List of third-party applications that can be used to log in",
"Records": "Records", "Records": "Records",
"Request uri": "Request uri", "Request URI": "Request URI",
"Resources": "Resources", "Resources": "Resources",
"Save": "Save", "Save": "Save",
"Scope": "Scope", "Scope": "Scope",
@ -127,9 +131,9 @@
"User containers": "User containers", "User containers": "User containers",
"User type": "User type", "User type": "User type",
"User type - Tooltip": "Permission role owned by the user", "User type - Tooltip": "Permission role owned by the user",
"Username": "Username",
"Users": "Users", "Users": "Users",
"Users under all organizations": "Users under all organizations", "Users under all organizations": "Users under all organizations",
"Webhooks": "Webhooks",
"{total} in total": "{total} in total" "{total} in total": "{total} in total"
}, },
"ldap": { "ldap": {
@ -244,6 +248,9 @@
"rule": "rule", "rule": "rule",
"visible": "visible" "visible": "visible"
}, },
"record": {
"Is Triggered": "Is Triggered"
},
"resource": { "resource": {
"Application": "Application", "Application": "Application",
"Copy Link": "Copy Link", "Copy Link": "Copy Link",
@ -339,5 +346,14 @@
"Unlink": "Unlink", "Unlink": "Unlink",
"Upload a photo": "Upload a photo", "Upload a photo": "Upload a photo",
"input password": "input password" "input password": "input password"
},
"webhook": {
"Content type": "Content type",
"Content type - Tooltip": "Content type - Tooltip",
"Edit Webhook": "Edit Webhook",
"Events": "Events",
"Events - Tooltip": "Events - Tooltip",
"URL": "URL",
"URL - Tooltip": "URL - Tooltip"
} }
} }

View File

@ -60,7 +60,7 @@
"Avatar - Tooltip": "向其他人展示的头像", "Avatar - Tooltip": "向其他人展示的头像",
"Back Home": "返回到首页", "Back Home": "返回到首页",
"Captcha": "人机验证码", "Captcha": "人机验证码",
"Client ip": "客户端地址", "Client IP": "客户端IP",
"Created time": "创建时间", "Created time": "创建时间",
"Default avatar": "默认头像", "Default avatar": "默认头像",
"Default avatar - Tooltip": "默认头像", "Default avatar - Tooltip": "默认头像",
@ -79,10 +79,14 @@
"Forget URL - Tooltip": "忘记密码URL", "Forget URL - Tooltip": "忘记密码URL",
"Home": "首页", "Home": "首页",
"Home - Tooltip": "应用的首页", "Home - Tooltip": "应用的首页",
"ID": "ID",
"ID - Tooltip": "唯一的随机字符串", "ID - Tooltip": "唯一的随机字符串",
"LDAPs": "LDAPs", "LDAPs": "LDAPs",
"LDAPs - Tooltip": "LDAPs", "LDAPs - Tooltip": "LDAPs",
"Logo - Tooltip": "应用程序向外展示的图标", "Logo - Tooltip": "应用程序向外展示的图标",
"Master password": "万能密码",
"Master password - Tooltip": "可用来登录该组织下的所有用户,方便管理员以该用户身份登录,以解决技术问题",
"Method": "方法",
"Name": "名称", "Name": "名称",
"Name - Tooltip": "唯一的、字符串式的ID", "Name - Tooltip": "唯一的、字符串式的ID",
"OAuth providers": "OAuth提供方", "OAuth providers": "OAuth提供方",
@ -106,7 +110,7 @@
"Providers": "提供商", "Providers": "提供商",
"Providers - Tooltip": "第三方登录需要配置的提供方", "Providers - Tooltip": "第三方登录需要配置的提供方",
"Records": "日志", "Records": "日志",
"Request uri": "请求地址", "Request URI": "请求URI",
"Resources": "资源", "Resources": "资源",
"Save": "保存", "Save": "保存",
"Scope": "范围", "Scope": "范围",
@ -127,9 +131,9 @@
"User containers": "用户容器", "User containers": "用户容器",
"User type": "用户类型", "User type": "用户类型",
"User type - Tooltip": "具有不同权限的用户角色", "User type - Tooltip": "具有不同权限的用户角色",
"Username": "用户名",
"Users": "用户", "Users": "用户",
"Users under all organizations": "所有组织里的用户", "Users under all organizations": "所有组织里的用户",
"Webhooks": "Webhooks",
"{total} in total": "{total} 总计" "{total} in total": "{total} 总计"
}, },
"ldap": { "ldap": {
@ -244,6 +248,9 @@
"rule": "rule", "rule": "rule",
"visible": "visible" "visible": "visible"
}, },
"record": {
"Is Triggered": "已触发"
},
"resource": { "resource": {
"Application": "应用", "Application": "应用",
"Copy Link": "复制链接", "Copy Link": "复制链接",
@ -339,5 +346,14 @@
"Unlink": "解绑", "Unlink": "解绑",
"Upload a photo": "上传头像", "Upload a photo": "上传头像",
"input password": "输入密码" "input password": "输入密码"
},
"webhook": {
"Content type": "Content type",
"Content type - Tooltip": "Content type",
"Edit Webhook": "修改Webhook",
"Events": "事件",
"Events - Tooltip": "事件",
"URL": "URL",
"URL - Tooltip": "URL"
} }
} }