Don't include global_screen_name in API yet

This commit is contained in:
dangered wolf 2023-11-02 04:55:47 -04:00
parent fe61670e9f
commit edeb38fcea
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -89,6 +89,9 @@ export const userAPI = async (
const response: UserAPIResponse = { code: 200, message: 'OK' } as UserAPIResponse;
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 */
response.user = apiUser;