zhuangchong commented on a change in pull request #3949:
URL:
https://github.com/apache/incubator-dolphinscheduler/pull/3949#discussion_r513149998
##########
File path:
dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/UserMapper.xml
##########
@@ -32,7 +32,7 @@
</select>
<select id="queryUserPaging"
resultType="org.apache.dolphinscheduler.dao.entity.User">
select
u.id,u.user_name,u.user_password,u.user_type,u.email,u.phone,u.tenant_id,u.create_time,
- u.update_time,t.tenant_name,u.state,
+ u.update_time,u.state,
Review comment:
u.update_time,t.tenant_code,u.state,
##########
File path:
dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/UserMapper.xml
##########
@@ -44,7 +44,7 @@
order by u.update_time desc
</select>
<select id="queryDetailsById"
resultType="org.apache.dolphinscheduler.dao.entity.User">
- select u.*, t.tenant_name,
+ select u.*,
Review comment:
select u.*, t.tenant_code,
##########
File path:
dolphinscheduler-ui/src/js/conf/home/pages/security/pages/users/_source/createUser.vue
##########
@@ -231,8 +231,7 @@
})
this.tenantList = _.map(arr, v => {
return {
- id: v.id,
- code: v.tenantName
+ id: v.id
Review comment:
id: v.id
code: v.tenantCode
##########
File path: dolphinscheduler-ui/src/js/conf/home/store/security/actions.js
##########
@@ -281,8 +281,7 @@ export default {
io.get('tenant/list', payload, res => {
const list = res.data
list.unshift({
- id: -1,
- tenantName: 'default'
+ id: -1
Review comment:
id: -1
tenantCode: 'default'
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]