fix: backend (#1481)

* fix: check ids in proto

* fix sign out

* improve displayed login name after user selection

* fix init user in login

* fix init password in login

Co-authored-by: fabi <fabienne.gerschwiler@gmail.com>
This commit is contained in:
Livio Amstutz
2021-03-26 16:29:26 +01:00
committed by GitHub
parent 31b542015e
commit c0b37924c8
5 changed files with 27 additions and 19 deletions

View File

@@ -827,7 +827,7 @@ service ManagementService {
option (zitadel.v1.auth_option) = {
permission: "project.role.write"
check_field_name: "Id"
check_field_name: "ProjectId"
};
}
@@ -840,7 +840,7 @@ service ManagementService {
option (zitadel.v1.auth_option) = {
permission: "project.role.write"
check_field_name: "Id"
check_field_name: "ProjectId"
};
}
@@ -852,7 +852,7 @@ service ManagementService {
option (zitadel.v1.auth_option) = {
permission: "project.role.write"
check_field_name: "Id"
check_field_name: "ProjectId"
};
}
@@ -864,7 +864,7 @@ service ManagementService {
option (zitadel.v1.auth_option) = {
permission: "project.role.delete"
check_field_name: "Id"
check_field_name: "ProjectId"
};
}
@@ -910,7 +910,7 @@ service ManagementService {
option (zitadel.v1.auth_option) = {
permission: "project.member.write"
check_field_name: "Id"
check_field_name: "ProjectId"
};
}