-
Notifications
You must be signed in to change notification settings - Fork 147
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Marcos Iglesias Valle <[email protected]>
- Loading branch information
Showing
18 changed files
with
146 additions
and
188 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
54 changes: 26 additions & 28 deletions
54
amundsen_application/static/js/fixtures/metadata/users.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,36 @@ | ||
export const activeUser0 = { | ||
manager_id: null, | ||
manager_fullname: null, | ||
manager_email: null, | ||
import { PeopleUser } from 'interfaces/User'; | ||
|
||
export const activeUser0: PeopleUser = { | ||
manager_fullname: undefined, | ||
manager_email: undefined, | ||
profile_url: '/test0', | ||
role_name: null, | ||
display_name: null, | ||
github_username: null, | ||
team_name: null, | ||
last_name: null, | ||
full_name: null, | ||
slack_id: null, | ||
first_name: null, | ||
employee_type: null, | ||
other_key_values: {}, | ||
role_name: undefined, | ||
display_name: '', | ||
github_username: '', | ||
team_name: '', | ||
last_name: '', | ||
full_name: '', | ||
slack_id: '', | ||
first_name: '', | ||
employee_type: '', | ||
is_active: true, | ||
email: '[email protected]', | ||
user_id: 'user0', | ||
}; | ||
|
||
export const activeUser1 = { | ||
manager_id: null, | ||
manager_fullname: null, | ||
manager_email: null, | ||
export const activeUser1: PeopleUser = { | ||
manager_fullname: undefined, | ||
manager_email: undefined, | ||
profile_url: '/test1', | ||
role_name: null, | ||
display_name: null, | ||
github_username: null, | ||
team_name: null, | ||
last_name: null, | ||
full_name: null, | ||
slack_id: null, | ||
first_name: null, | ||
employee_type: null, | ||
other_key_values: {}, | ||
role_name: undefined, | ||
display_name: '', | ||
github_username: '', | ||
team_name: '', | ||
last_name: '', | ||
full_name: '', | ||
slack_id: '', | ||
first_name: '', | ||
employee_type: '', | ||
is_active: true, | ||
email: '[email protected]', | ||
user_id: 'user1', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -99,7 +99,7 @@ export const allResourcesExample = { | |
{ | ||
display_name: 'Test User', | ||
email: '[email protected]', | ||
employee_type: null, | ||
employee_type: '', | ||
first_name: 'Test', | ||
full_name: 'Test User', | ||
github_username: '', | ||
|
@@ -108,16 +108,16 @@ export const allResourcesExample = { | |
manager_email: '[email protected]', | ||
manager_fullname: 'Test User2', | ||
profile_url: '', | ||
role_name: null, | ||
slack_id: null, | ||
role_name: undefined, | ||
slack_id: '', | ||
team_name: 'Amundsen Team', | ||
type: 'user', | ||
user_id: '[email protected]', | ||
}, | ||
{ | ||
display_name: 'Test User2', | ||
email: '[email protected]', | ||
employee_type: null, | ||
employee_type: '', | ||
first_name: 'Test', | ||
full_name: 'Test User2', | ||
github_username: '', | ||
|
@@ -126,8 +126,8 @@ export const allResourcesExample = { | |
manager_email: '[email protected]', | ||
manager_fullname: 'Test User3', | ||
profile_url: '', | ||
role_name: null, | ||
slack_id: null, | ||
role_name: undefined, | ||
slack_id: '', | ||
team_name: 'Amundsen Team', | ||
type: 'user', | ||
user_id: '[email protected]', | ||
|
Oops, something went wrong.