Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feature: add email for select user on apollo portal #3797

Merged
merged 2 commits into from
Jun 30, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ Apollo 1.9.0
* [feature: add Spring Boot 2.4 config data loader support](https://github.com/ctripcorp/apollo/pull/3754)
* [feat(open-api): get authorized apps](https://github.com/ctripcorp/apollo/pull/3647)
* [feature: shared session for multi apollo portal](https://github.com/ctripcorp/apollo/pull/3786)
* [feature: add email for select user on apollo portal](https://github.com/ctripcorp/apollo/pull/3797)
------------------
All issues and pull requests are [here](https://github.com/ctripcorp/apollo/milestone/6?closed=1)

Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ directive_module.directive('apollouserselector', function ($compile, $window,App
data.forEach(function (user) {
users.push({
id: user.userId,
text: user.userId + " | " + user.name
text: user.userId + " | " + user.name + " | " + user.email
})
});
return {
Expand Down Expand Up @@ -346,7 +346,7 @@ directive_module.directive('apollomultipleuserselector', function ($compile, $wi
data.forEach(function (user) {
users.push({
id: user.userId,
text: user.userId + " | " + user.name
text: user.userId + " | " + user.name + " | " + user.email
})
});
return {
Expand Down