src/services/api -> src/api

This commit is contained in:
Henry Jameson 2026-06-17 14:36:45 +03:00
commit c81813064b
50 changed files with 74 additions and 74 deletions

View file

@ -9,7 +9,7 @@ import {
uniq,
} from 'lodash'
import { register } from '../services/api/public.js'
import { register } from 'src/api/public.js'
import oauthApi from '../services/new_api/oauth.js'
import {
registerPushNotifications,
@ -39,7 +39,7 @@ import {
getCaptcha,
searchUsers,
verifyCredentials,
} from 'src/services/api/public.js'
} from 'src/api/public.js'
import {
fetchBlocks,
fetchDomainMutes,
@ -48,7 +48,7 @@ import {
fetchUserRelationship,
followUser,
muteUser,
} from 'src/services/api/user.js'
} from 'src/api/user.js'
// TODO: Unify with mergeOrAdd in statuses.js
export const mergeOrAdd = (arr, obj, item) => {