mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
Don't include global_screen_name in API yet
This commit is contained in:
parent
fe61670e9f
commit
edeb38fcea
1 changed files with 3 additions and 0 deletions
|
@ -89,6 +89,9 @@ export const userAPI = async (
|
||||||
const response: UserAPIResponse = { code: 200, message: 'OK' } as UserAPIResponse;
|
const response: UserAPIResponse = { code: 200, message: 'OK' } as UserAPIResponse;
|
||||||
const apiUser: APIUser = (await populateUserProperties(userResponse)) as APIUser;
|
const apiUser: APIUser = (await populateUserProperties(userResponse)) as APIUser;
|
||||||
|
|
||||||
|
/* Currently, we haven't rolled this out as it's part of the proto-v2 API */
|
||||||
|
delete apiUser.global_screen_name;
|
||||||
|
|
||||||
/* Finally, staple the User to the response and return it */
|
/* Finally, staple the User to the response and return it */
|
||||||
response.user = apiUser;
|
response.user = apiUser;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue