Rename files (6): _ -> -
This commit is contained in:
parent
d4f5fd4d88
commit
24e7873bce
86 changed files with 69 additions and 69 deletions
|
@ -10,7 +10,7 @@ import ScrollableList from 'soapbox/components/scrollable-list';
|
|||
import StatusContainer from 'soapbox/containers/status-container';
|
||||
import Ad from 'soapbox/features/ads/components/ad';
|
||||
import FeedSuggestions from 'soapbox/features/feed-suggestions/feed-suggestions';
|
||||
import PlaceholderStatus from 'soapbox/features/placeholder/components/placeholder_status';
|
||||
import PlaceholderStatus from 'soapbox/features/placeholder/components/placeholder-status';
|
||||
import { ALGORITHMS } from 'soapbox/features/timeline-insertion';
|
||||
import PendingStatus from 'soapbox/features/ui/components/pending_status';
|
||||
import { useSoapboxConfig } from 'soapbox/hooks';
|
||||
|
|
|
@ -2,7 +2,7 @@ import React, { useState } from 'react';
|
|||
|
||||
import { openModal } from 'soapbox/actions/modals';
|
||||
import AttachmentThumbs from 'soapbox/components/attachment-thumbs';
|
||||
import PlaceholderCard from 'soapbox/features/placeholder/components/placeholder_card';
|
||||
import PlaceholderCard from 'soapbox/features/placeholder/components/placeholder-card';
|
||||
import Card from 'soapbox/features/status/components/card';
|
||||
import Bundle from 'soapbox/features/ui/components/bundle';
|
||||
import { MediaGallery, Video, Audio } from 'soapbox/features/ui/util/async-components';
|
||||
|
|
|
@ -11,7 +11,7 @@ import { toggleStatusHidden } from 'soapbox/actions/statuses';
|
|||
import Icon from 'soapbox/components/icon';
|
||||
import TranslateButton from 'soapbox/components/translate-button';
|
||||
import AccountContainer from 'soapbox/containers/account-container';
|
||||
import QuotedStatus from 'soapbox/features/status/containers/quoted_status_container';
|
||||
import QuotedStatus from 'soapbox/features/status/containers/quoted-status-container';
|
||||
import { useAppDispatch, useSettings } from 'soapbox/hooks';
|
||||
import { defaultMediaVisibility, textForScreenReader, getActualStatus } from 'soapbox/utils/status';
|
||||
|
||||
|
|
|
@ -19,7 +19,7 @@ import Helmet from 'soapbox/components/helmet';
|
|||
import LoadingScreen from 'soapbox/components/loading-screen';
|
||||
import AuthLayout from 'soapbox/features/auth-layout';
|
||||
import EmbeddedStatus from 'soapbox/features/embedded-status';
|
||||
import PublicLayout from 'soapbox/features/public_layout';
|
||||
import PublicLayout from 'soapbox/features/public-layout';
|
||||
import BundleContainer from 'soapbox/features/ui/containers/bundle_container';
|
||||
import {
|
||||
ModalContainer,
|
||||
|
|
|
@ -12,8 +12,8 @@ import PasswordReset from '../auth-login/components/password_reset';
|
|||
import PasswordResetConfirm from '../auth-login/components/password_reset_confirm';
|
||||
import RegistrationForm from '../auth-login/components/registration_form';
|
||||
import ExternalLoginForm from '../external-login/components/external-login-form';
|
||||
import Footer from '../public_layout/components/footer';
|
||||
import RegisterInvite from '../register_invite';
|
||||
import Footer from '../public-layout/components/footer';
|
||||
import RegisterInvite from '../register-invite';
|
||||
import Verification from '../verification';
|
||||
import EmailPassthru from '../verification/email_passthru';
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ import { createSelector } from 'reselect';
|
|||
import { fetchChats, expandChats } from 'soapbox/actions/chats';
|
||||
import PullToRefresh from 'soapbox/components/pull-to-refresh';
|
||||
import { Card, Text } from 'soapbox/components/ui';
|
||||
import PlaceholderChat from 'soapbox/features/placeholder/components/placeholder_chat';
|
||||
import PlaceholderChat from 'soapbox/features/placeholder/components/placeholder-chat';
|
||||
import { useAppSelector } from 'soapbox/hooks';
|
||||
|
||||
import Chat from './chat';
|
||||
|
|
|
@ -10,9 +10,9 @@ import ScrollableList from 'soapbox/components/scrollable-list';
|
|||
import { HStack, Tabs, Text } from 'soapbox/components/ui';
|
||||
import AccountContainer from 'soapbox/containers/account-container';
|
||||
import StatusContainer from 'soapbox/containers/status-container';
|
||||
import PlaceholderAccount from 'soapbox/features/placeholder/components/placeholder_account';
|
||||
import PlaceholderHashtag from 'soapbox/features/placeholder/components/placeholder_hashtag';
|
||||
import PlaceholderStatus from 'soapbox/features/placeholder/components/placeholder_status';
|
||||
import PlaceholderAccount from 'soapbox/features/placeholder/components/placeholder-account';
|
||||
import PlaceholderHashtag from 'soapbox/features/placeholder/components/placeholder-hashtag';
|
||||
import PlaceholderStatus from 'soapbox/features/placeholder/components/placeholder-status';
|
||||
import { useAppDispatch, useAppSelector } from 'soapbox/hooks';
|
||||
|
||||
import type { OrderedSet as ImmutableOrderedSet } from 'immutable';
|
||||
|
|
|
@ -15,7 +15,7 @@ import {
|
|||
FormGroup,
|
||||
Textarea,
|
||||
} from 'soapbox/components/ui';
|
||||
import SettingToggle from 'soapbox/features/notifications/components/setting_toggle';
|
||||
import SettingToggle from 'soapbox/features/notifications/components/setting-toggle';
|
||||
import { useAppSelector, useAppDispatch, useSettings } from 'soapbox/hooks';
|
||||
|
||||
const isJSONValid = (text: any): boolean => {
|
||||
|
|
|
@ -5,7 +5,7 @@ import Icon from 'soapbox/components/icon';
|
|||
import { useAppSelector } from 'soapbox/hooks';
|
||||
import { makeGetRemoteInstance } from 'soapbox/selectors';
|
||||
|
||||
import InstanceRestrictions from './instance_restrictions';
|
||||
import InstanceRestrictions from './instance-restrictions';
|
||||
|
||||
const getRemoteInstance = makeGetRemoteInstance();
|
||||
|
|
@ -9,7 +9,7 @@ import { federationRestrictionsDisclosed } from 'soapbox/utils/state';
|
|||
|
||||
import Column from '../ui/components/column';
|
||||
|
||||
import RestrictedInstance from './components/restricted_instance';
|
||||
import RestrictedInstance from './components/restricted-instance';
|
||||
|
||||
import type { OrderedSet as ImmutableOrderedSet } from 'immutable';
|
||||
|
|
@ -7,7 +7,7 @@ import { useAppDispatch, useAppSelector, useDimensions } from 'soapbox/hooks';
|
|||
import useCarouselAvatars from 'soapbox/queries/carousels';
|
||||
|
||||
import { Card, HStack, Icon, Stack, Text } from '../../components/ui';
|
||||
import PlaceholderAvatar from '../placeholder/components/placeholder_avatar';
|
||||
import PlaceholderAvatar from '../placeholder/components/placeholder-avatar';
|
||||
|
||||
const CarouselItem = ({ avatar }: { avatar: any }) => {
|
||||
const dispatch = useAppDispatch();
|
||||
|
|
|
@ -10,7 +10,7 @@ import { useAppSelector } from 'soapbox/hooks';
|
|||
|
||||
import Column from '../ui/components/column';
|
||||
|
||||
import AccountAuthorize from './components/account_authorize';
|
||||
import AccountAuthorize from './components/account-authorize';
|
||||
|
||||
const messages = defineMessages({
|
||||
heading: { id: 'column.follow_requests', defaultMessage: 'Follow requests' },
|
|
@ -9,7 +9,7 @@ import {
|
|||
|
||||
import Column from '../ui/components/column';
|
||||
|
||||
import CSVImporter from './components/csv_importer';
|
||||
import CSVImporter from './components/csv-importer';
|
||||
|
||||
const messages = defineMessages({
|
||||
heading: { id: 'column.import_data', defaultMessage: 'Import data' },
|
|
@ -6,7 +6,7 @@ import { setupListAdder, resetListAdder } from 'soapbox/actions/lists';
|
|||
import { CardHeader, CardTitle, Modal } from 'soapbox/components/ui';
|
||||
import { useAppDispatch, useAppSelector } from 'soapbox/hooks';
|
||||
|
||||
import NewListForm from '../lists/components/new_list_form';
|
||||
import NewListForm from '../lists/components/new-list-form';
|
||||
|
||||
import Account from './components/account';
|
||||
import List from './components/list';
|
|
@ -11,7 +11,7 @@ import ScrollableList from 'soapbox/components/scrollable-list';
|
|||
import { Column, IconButton, Spinner } from 'soapbox/components/ui';
|
||||
import { useAppSelector } from 'soapbox/hooks';
|
||||
|
||||
import NewListForm from './components/new_list_form';
|
||||
import NewListForm from './components/new-list-form';
|
||||
|
||||
import type { RootState } from 'soapbox/store';
|
||||
|
||||
|
|
|
@ -15,10 +15,10 @@ import PullToRefresh from 'soapbox/components/pull-to-refresh';
|
|||
import ScrollTopButton from 'soapbox/components/scroll-top-button';
|
||||
import ScrollableList from 'soapbox/components/scrollable-list';
|
||||
import { Column } from 'soapbox/components/ui';
|
||||
import PlaceholderNotification from 'soapbox/features/placeholder/components/placeholder_notification';
|
||||
import PlaceholderNotification from 'soapbox/features/placeholder/components/placeholder-notification';
|
||||
import { useAppDispatch, useAppSelector, useSettings } from 'soapbox/hooks';
|
||||
|
||||
import FilterBar from './components/filter_bar';
|
||||
import FilterBar from './components/filter-bar';
|
||||
import Notification from './components/notification';
|
||||
|
||||
import type { VirtuosoHandle } from 'react-virtuoso';
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import React from 'react';
|
||||
|
||||
import PlaceholderAvatar from './placeholder_avatar';
|
||||
import PlaceholderDisplayName from './placeholder_display_name';
|
||||
import PlaceholderAvatar from './placeholder-avatar';
|
||||
import PlaceholderDisplayName from './placeholder-display-name';
|
||||
|
||||
/** Fake account to display while data is loading. */
|
||||
const PlaceholderAccount: React.FC = () => {
|
|
@ -2,8 +2,8 @@ import React from 'react';
|
|||
|
||||
import { randomIntFromInterval, generateText } from '../utils';
|
||||
|
||||
import PlaceholderAvatar from './placeholder_avatar';
|
||||
import PlaceholderDisplayName from './placeholder_display_name';
|
||||
import PlaceholderAvatar from './placeholder-avatar';
|
||||
import PlaceholderDisplayName from './placeholder-display-name';
|
||||
|
||||
/** Fake chat to display while data is loading. */
|
||||
const PlaceholderChat: React.FC = () => {
|
|
@ -1,6 +1,6 @@
|
|||
import React from 'react';
|
||||
|
||||
import PlaceholderStatus from './placeholder_status';
|
||||
import PlaceholderStatus from './placeholder-status';
|
||||
|
||||
/** Fake material status to display while data is loading. */
|
||||
const PlaceholderMaterialStatus: React.FC = () => {
|
|
@ -1,8 +1,8 @@
|
|||
import * as React from 'react';
|
||||
|
||||
import PlaceholderAvatar from './placeholder_avatar';
|
||||
import PlaceholderDisplayName from './placeholder_display_name';
|
||||
import PlaceholderStatusContent from './placeholder_status_content';
|
||||
import PlaceholderAvatar from './placeholder-avatar';
|
||||
import PlaceholderDisplayName from './placeholder-display-name';
|
||||
import PlaceholderStatusContent from './placeholder-status-content';
|
||||
|
||||
/** Fake notification to display while data is loading. */
|
||||
const PlaceholderNotification = () => (
|
|
@ -1,9 +1,9 @@
|
|||
import classNames from 'clsx';
|
||||
import * as React from 'react';
|
||||
|
||||
import PlaceholderAvatar from './placeholder_avatar';
|
||||
import PlaceholderDisplayName from './placeholder_display_name';
|
||||
import PlaceholderStatusContent from './placeholder_status_content';
|
||||
import PlaceholderAvatar from './placeholder-avatar';
|
||||
import PlaceholderDisplayName from './placeholder-display-name';
|
||||
import PlaceholderStatusContent from './placeholder-status-content';
|
||||
|
||||
interface IPlaceholderStatus {
|
||||
thread?: boolean
|
|
@ -6,7 +6,7 @@ import { changeSetting } from 'soapbox/actions/settings';
|
|||
import List, { ListItem } from 'soapbox/components/list';
|
||||
import { Form } from 'soapbox/components/ui';
|
||||
import { SelectDropdown } from 'soapbox/features/forms';
|
||||
import SettingToggle from 'soapbox/features/notifications/components/setting_toggle';
|
||||
import SettingToggle from 'soapbox/features/notifications/components/setting-toggle';
|
||||
import { useFeatures, useSettings } from 'soapbox/hooks';
|
||||
|
||||
import ThemeToggle from '../ui/components/theme-toggle';
|
||||
|
|
|
@ -6,7 +6,7 @@ import { useAppSelector } from 'soapbox/hooks';
|
|||
import { isStandalone } from 'soapbox/utils/state';
|
||||
|
||||
import AboutPage from '../about';
|
||||
import LandingPage from '../landing_page';
|
||||
import LandingPage from '../landing-page';
|
||||
|
||||
import Footer from './components/footer';
|
||||
import Header from './components/header';
|
|
@ -11,7 +11,7 @@ import { Column } from 'soapbox/components/ui';
|
|||
import Accordion from 'soapbox/features/ui/components/accordion';
|
||||
import { useAppDispatch, useAppSelector, useSettings } from 'soapbox/hooks';
|
||||
|
||||
import PinnedHostsPicker from '../remote_timeline/components/pinned_hosts_picker';
|
||||
import PinnedHostsPicker from '../remote-timeline/components/pinned-hosts-picker';
|
||||
import Timeline from '../ui/components/timeline';
|
||||
|
||||
const messages = defineMessages({
|
|
@ -11,7 +11,7 @@ import { useAppDispatch, useSettings } from 'soapbox/hooks';
|
|||
|
||||
import Timeline from '../ui/components/timeline';
|
||||
|
||||
import PinnedHostsPicker from './components/pinned_hosts_picker';
|
||||
import PinnedHostsPicker from './components/pinned-hosts-picker';
|
||||
|
||||
const messages = defineMessages({
|
||||
title: { id: 'column.remote', defaultMessage: 'Federated timeline' },
|
|
@ -2,8 +2,8 @@ import classNames from 'clsx';
|
|||
import React from 'react';
|
||||
|
||||
import AttachmentThumbs from 'soapbox/components/attachment-thumbs';
|
||||
import StatusReplyMentions from 'soapbox/components/status-reply-mentions';
|
||||
import StatusContent from 'soapbox/components/status-content';
|
||||
import StatusReplyMentions from 'soapbox/components/status-reply-mentions';
|
||||
import { HStack } from 'soapbox/components/ui';
|
||||
import AccountContainer from 'soapbox/containers/account-container';
|
||||
import PollPreview from 'soapbox/features/ui/components/poll_preview';
|
||||
|
@ -11,7 +11,7 @@ import { useAppSelector } from 'soapbox/hooks';
|
|||
|
||||
import { buildStatus } from '../builder';
|
||||
|
||||
import ScheduledStatusActionBar from './scheduled_status_action_bar';
|
||||
import ScheduledStatusActionBar from './scheduled-status-action-bar';
|
||||
|
||||
import type { Account as AccountEntity, Status as StatusEntity } from 'soapbox/types/entities';
|
||||
|
|
@ -8,7 +8,7 @@ import { useAppSelector, useAppDispatch } from 'soapbox/hooks';
|
|||
|
||||
import Column from '../ui/components/column';
|
||||
|
||||
import ScheduledStatus from './components/scheduled_status';
|
||||
import ScheduledStatus from './components/scheduled-status';
|
||||
|
||||
const messages = defineMessages({
|
||||
heading: { id: 'column.scheduled_statuses', defaultMessage: 'Scheduled Posts' },
|
|
@ -5,9 +5,9 @@ import { fetchMfa } from 'soapbox/actions/mfa';
|
|||
import { Card, CardBody, CardHeader, CardTitle, Column, Stack } from 'soapbox/components/ui';
|
||||
import { useAppSelector, useAppDispatch } from 'soapbox/hooks';
|
||||
|
||||
import DisableOtpForm from './mfa/disable_otp_form';
|
||||
import EnableOtpForm from './mfa/enable_otp_form';
|
||||
import OtpConfirmForm from './mfa/otp_confirm_form';
|
||||
import DisableOtpForm from './mfa/disable-otp-form';
|
||||
import EnableOtpForm from './mfa/enable-otp-form';
|
||||
import OtpConfirmForm from './mfa/otp-confirm-form';
|
||||
|
||||
/*
|
||||
Security settings page for user account
|
|
@ -1,6 +1,6 @@
|
|||
import React from 'react';
|
||||
|
||||
import IconPickerDropdown from './icon_picker_dropdown';
|
||||
import IconPickerDropdown from './icon-picker-dropdown';
|
||||
|
||||
interface IIconPicker {
|
||||
value: string,
|
|
@ -10,7 +10,7 @@ import SensitiveContentOverlay from 'soapbox/components/statuses/sensitive-conte
|
|||
import TranslateButton from 'soapbox/components/translate-button';
|
||||
import { HStack, Stack, Text } from 'soapbox/components/ui';
|
||||
import AccountContainer from 'soapbox/containers/account-container';
|
||||
import QuotedStatus from 'soapbox/features/status/containers/quoted_status_container';
|
||||
import QuotedStatus from 'soapbox/features/status/containers/quoted-status-container';
|
||||
import { getActualStatus } from 'soapbox/utils/status';
|
||||
|
||||
import StatusInteractionBar from './status-interaction-bar';
|
||||
|
|
|
@ -3,7 +3,7 @@ import { OrderedSet as ImmutableOrderedSet } from 'immutable';
|
|||
import React from 'react';
|
||||
|
||||
import StatusContainer from 'soapbox/containers/status-container';
|
||||
import PlaceholderStatus from 'soapbox/features/placeholder/components/placeholder_status';
|
||||
import PlaceholderStatus from 'soapbox/features/placeholder/components/placeholder-status';
|
||||
import { useAppSelector } from 'soapbox/hooks';
|
||||
|
||||
interface IThreadStatus {
|
||||
|
|
|
@ -32,7 +32,7 @@ import StatusActionBar from 'soapbox/components/status-action-bar';
|
|||
import SubNavigation from 'soapbox/components/sub-navigation';
|
||||
import Tombstone from 'soapbox/components/tombstone';
|
||||
import { Column, Stack } from 'soapbox/components/ui';
|
||||
import PlaceholderStatus from 'soapbox/features/placeholder/components/placeholder_status';
|
||||
import PlaceholderStatus from 'soapbox/features/placeholder/components/placeholder-status';
|
||||
import PendingStatus from 'soapbox/features/ui/components/pending_status';
|
||||
import { useAppDispatch, useAppSelector, useSettings } from 'soapbox/hooks';
|
||||
import { makeGetStatus } from 'soapbox/selectors';
|
||||
|
|
|
@ -6,7 +6,7 @@ import { useIntl, defineMessages, FormattedMessage } from 'react-intl';
|
|||
import { openModal } from 'soapbox/actions/modals';
|
||||
import { Widget } from 'soapbox/components/ui';
|
||||
import DropdownMenu from 'soapbox/containers/dropdown-menu-container';
|
||||
import InstanceRestrictions from 'soapbox/features/federation_restrictions/components/instance_restrictions';
|
||||
import InstanceRestrictions from 'soapbox/features/federation-restrictions/components/instance-restrictions';
|
||||
import { useAppSelector, useAppDispatch, useOwnAccount } from 'soapbox/hooks';
|
||||
import { makeGetRemoteInstance } from 'soapbox/selectors';
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ import Toggle from 'react-toggle';
|
|||
import { changeReportBlock, changeReportForward } from 'soapbox/actions/reports';
|
||||
import { fetchRules } from 'soapbox/actions/rules';
|
||||
import { Button, FormGroup, HStack, Stack, Text } from 'soapbox/components/ui';
|
||||
import StatusCheckBox from 'soapbox/features/report/components/status_check_box';
|
||||
import StatusCheckBox from 'soapbox/features/report/components/status-check-box';
|
||||
import { useAppSelector, useFeatures } from 'soapbox/hooks';
|
||||
import { isRemote, getDomain } from 'soapbox/utils/accounts';
|
||||
|
||||
|
|
|
@ -5,9 +5,9 @@ import StatusContent from 'soapbox/components/status-content';
|
|||
import StatusReplyMentions from 'soapbox/components/status-reply-mentions';
|
||||
import { Card, HStack } from 'soapbox/components/ui';
|
||||
import AccountContainer from 'soapbox/containers/account-container';
|
||||
import PlaceholderCard from 'soapbox/features/placeholder/components/placeholder_card';
|
||||
import PlaceholderMediaGallery from 'soapbox/features/placeholder/components/placeholder_media_gallery';
|
||||
import QuotedStatus from 'soapbox/features/status/containers/quoted_status_container';
|
||||
import PlaceholderCard from 'soapbox/features/placeholder/components/placeholder-card';
|
||||
import PlaceholderMediaGallery from 'soapbox/features/placeholder/components/placeholder-media-gallery';
|
||||
import QuotedStatus from 'soapbox/features/status/containers/quoted-status-container';
|
||||
import { useAppSelector } from 'soapbox/hooks';
|
||||
|
||||
import { buildStatus } from '../util/pending_status_builder';
|
||||
|
|
|
@ -6,7 +6,7 @@ import { useAppSelector, useCompose } from 'soapbox/hooks';
|
|||
import { statusToMentionsAccountIdsArray } from 'soapbox/reducers/compose';
|
||||
import { makeGetStatus } from 'soapbox/selectors';
|
||||
|
||||
import Account from '../../reply_mentions/account';
|
||||
import Account from '../../reply-mentions/account';
|
||||
|
||||
import type { Account as AccountEntity, Status as StatusEntity } from 'soapbox/types/entities';
|
||||
|
||||
|
|
|
@ -7,15 +7,15 @@ export function Notifications() {
|
|||
}
|
||||
|
||||
export function HomeTimeline() {
|
||||
return import(/* webpackChunkName: "features/home_timeline" */'../../home_timeline');
|
||||
return import(/* webpackChunkName: "features/home_timeline" */'../../home-timeline');
|
||||
}
|
||||
|
||||
export function PublicTimeline() {
|
||||
return import(/* webpackChunkName: "features/public_timeline" */'../../public_timeline');
|
||||
return import(/* webpackChunkName: "features/public_timeline" */'../../public-timeline');
|
||||
}
|
||||
|
||||
export function RemoteTimeline() {
|
||||
return import(/* webpackChunkName: "features/remote_timeline" */'../../remote_timeline');
|
||||
return import(/* webpackChunkName: "features/remote_timeline" */'../../remote-timeline');
|
||||
}
|
||||
|
||||
export function CommunityTimeline() {
|
||||
|
@ -51,7 +51,7 @@ export function Status() {
|
|||
}
|
||||
|
||||
export function PinnedStatuses() {
|
||||
return import(/* webpackChunkName: "features/pinned_statuses" */'../../pinned_statuses');
|
||||
return import(/* webpackChunkName: "features/pinned_statuses" */'../../pinned-statuses');
|
||||
}
|
||||
|
||||
export function AccountTimeline() {
|
||||
|
@ -71,11 +71,11 @@ export function Following() {
|
|||
}
|
||||
|
||||
export function FollowRequests() {
|
||||
return import(/* webpackChunkName: "features/follow_requests" */'../../follow_requests');
|
||||
return import(/* webpackChunkName: "features/follow_requests" */'../../follow-requests');
|
||||
}
|
||||
|
||||
export function GenericNotFound() {
|
||||
return import(/* webpackChunkName: "features/generic_not_found" */'../../generic_not_found');
|
||||
return import(/* webpackChunkName: "features/generic_not_found" */'../../generic-not-found');
|
||||
}
|
||||
|
||||
export function FavouritedStatuses() {
|
||||
|
@ -211,7 +211,7 @@ export function ListEditor() {
|
|||
}
|
||||
|
||||
export function ListAdder() {
|
||||
return import(/*webpackChunkName: "features/list_adder" */'../../list_adder');
|
||||
return import(/*webpackChunkName: "features/list_adder" */'../../list-adder');
|
||||
}
|
||||
|
||||
export function Search() {
|
||||
|
@ -235,7 +235,7 @@ export function Settings() {
|
|||
}
|
||||
|
||||
export function MediaDisplay() {
|
||||
return import(/* webpackChunkName: "features/settings" */'../../settings/media_display');
|
||||
return import(/* webpackChunkName: "features/settings" */'../../settings/media-display');
|
||||
}
|
||||
|
||||
export function EditProfile() {
|
||||
|
@ -259,7 +259,7 @@ export function DeleteAccount() {
|
|||
}
|
||||
|
||||
export function SoapboxConfig() {
|
||||
return import(/* webpackChunkName: "features/soapbox_config" */'../../soapbox_config');
|
||||
return import(/* webpackChunkName: "features/soapbox_config" */'../../soapbox-config');
|
||||
}
|
||||
|
||||
export function ExportData() {
|
||||
|
@ -267,7 +267,7 @@ export function ExportData() {
|
|||
}
|
||||
|
||||
export function ImportData() {
|
||||
return import(/* webpackChunkName: "features/import_data" */'../../import_data');
|
||||
return import(/* webpackChunkName: "features/import_data" */'../../import-data');
|
||||
}
|
||||
|
||||
export function Backups() {
|
||||
|
@ -283,7 +283,7 @@ export function PasswordResetConfirm() {
|
|||
}
|
||||
|
||||
export function MfaForm() {
|
||||
return import(/* webpackChunkName: "features/security/mfa_form" */'../../security/mfa_form');
|
||||
return import(/* webpackChunkName: "features/security/mfa_form" */'../../security/mfa-form');
|
||||
}
|
||||
|
||||
export function ChatIndex() {
|
||||
|
@ -299,7 +299,7 @@ export function ChatPanes() {
|
|||
}
|
||||
|
||||
export function ServerInfo() {
|
||||
return import(/* webpackChunkName: "features/server_info" */'../../server_info');
|
||||
return import(/* webpackChunkName: "features/server_info" */'../../server-info');
|
||||
}
|
||||
|
||||
export function Dashboard() {
|
||||
|
@ -403,7 +403,7 @@ export function CryptoDonateModal() {
|
|||
}
|
||||
|
||||
export function ScheduledStatuses() {
|
||||
return import(/* webpackChunkName: "features/scheduled_statuses" */'../../scheduled_statuses');
|
||||
return import(/* webpackChunkName: "features/scheduled_statuses" */'../../scheduled-statuses');
|
||||
}
|
||||
|
||||
export function UserIndex() {
|
||||
|
@ -411,7 +411,7 @@ export function UserIndex() {
|
|||
}
|
||||
|
||||
export function FederationRestrictions() {
|
||||
return import(/* webpackChunkName: "features/federation_restrictions" */'../../federation_restrictions');
|
||||
return import(/* webpackChunkName: "features/federation_restrictions" */'../../federation-restrictions');
|
||||
}
|
||||
|
||||
export function Aliases() {
|
||||
|
@ -439,7 +439,7 @@ export function Directory() {
|
|||
}
|
||||
|
||||
export function RegisterInvite() {
|
||||
return import(/* webpackChunkName: "features/register_invite" */'../../register_invite');
|
||||
return import(/* webpackChunkName: "features/register_invite" */'../../register-invite');
|
||||
}
|
||||
|
||||
export function Share() {
|
||||
|
@ -447,11 +447,11 @@ export function Share() {
|
|||
}
|
||||
|
||||
export function NewStatus() {
|
||||
return import(/* webpackChunkName: "features/new_status" */'../../new_status');
|
||||
return import(/* webpackChunkName: "features/new_status" */'../../new-status');
|
||||
}
|
||||
|
||||
export function IntentionalError() {
|
||||
return import(/* webpackChunkName: "error" */'../../intentional_error');
|
||||
return import(/* webpackChunkName: "error" */'../../intentional-error');
|
||||
}
|
||||
|
||||
export function Developers() {
|
||||
|
@ -467,7 +467,7 @@ export function SettingsStore() {
|
|||
}
|
||||
|
||||
export function TestTimeline() {
|
||||
return import(/* webpackChunkName: "features/test_timeline" */'../../test_timeline');
|
||||
return import(/* webpackChunkName: "features/test_timeline" */'../../test-timeline');
|
||||
}
|
||||
|
||||
export function ServiceWorkerInfo() {
|
||||
|
|
Loading…
Reference in a new issue