mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-04 18:10:56 +01:00
move api/user to providers/twitter/profile
This commit is contained in:
parent
e2538debbf
commit
92ef6d5b08
3 changed files with 5 additions and 5 deletions
src
|
@ -5,7 +5,7 @@ import { handleMosaic } from '../../helpers/mosaic';
|
|||
// import { translateTweet } from '../../helpers/translate';
|
||||
import { unescapeText } from '../../helpers/utils';
|
||||
import { processMedia } from '../../helpers/media';
|
||||
import { convertToApiUser } from '../../api/user';
|
||||
import { convertToApiUser } from './profile';
|
||||
import { translateTweet } from '../../helpers/translate';
|
||||
|
||||
export const buildAPITweet = async (
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import { Constants } from '../constants';
|
||||
import { fetchUser } from '../fetch';
|
||||
import { linkFixer } from '../helpers/linkFixer';
|
||||
import { Constants } from '../../constants';
|
||||
import { fetchUser } from '../../fetch';
|
||||
import { linkFixer } from '../../helpers/linkFixer';
|
||||
|
||||
export const convertToApiUser = (user: GraphQLUser, legacyAPI = false): APIUser => {
|
||||
const apiUser = {} as APIUser;
|
|
@ -1,6 +1,6 @@
|
|||
import { Constants } from './constants';
|
||||
import { Strings } from './strings';
|
||||
import { userAPI } from './api/user';
|
||||
import { userAPI } from './providers/twitter/profile';
|
||||
|
||||
export const returnError = (error: string): StatusResponse => {
|
||||
return {
|
||||
|
|
Loading…
Add table
Reference in a new issue