Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Lint] fixed folder to snake case #220

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/core/server/saved_objects/migrations/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export { MigrationResult } from './core';
export {
OpenSearchDashboardsMigrator,
IOpenSearchDashboardsMigrator,
} from './opensearch-dashboards';
} from './opensearch_dashboards';
export {
SavedObjectMigrationFn,
SavedObjectMigrationMap,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* under the License.
*/

import { mockOpenSearchDashboardsMigrator } from '../../migrations/opensearch-dashboards/opensearch_dashboards_migrator.mock';
import { mockOpenSearchDashboardsMigrator } from '../../migrations/opensearch_dashboards/opensearch_dashboards_migrator.mock';

export const migratorInstanceMock = mockOpenSearchDashboardsMigrator.create();
export const OpenSearchDashboardsMigratorMock = jest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* under the License.
*/

import { mockOpenSearchDashboardsMigrator } from './migrations/opensearch-dashboards/opensearch_dashboards_migrator.mock';
import { mockOpenSearchDashboardsMigrator } from './migrations/opensearch_dashboards/opensearch_dashboards_migrator.mock';
import { savedObjectsClientProviderMock } from './service/lib/scoped_client_provider.mock';
import { typeRegistryMock } from './saved_objects_type_registry.mock';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* under the License.
*/
import { SavedObjectsRepository } from './repository';
import { mockOpenSearchDashboardsMigrator } from '../../migrations/opensearch-dashboards/opensearch_dashboards_migrator.mock';
import { mockOpenSearchDashboardsMigrator } from '../../migrations/opensearch_dashboards/opensearch_dashboards_migrator.mock';
import { OpenSearchDashboardsMigrator } from '../../migrations';
import { SavedObjectTypeRegistry } from '../../saved_objects_type_registry';

Expand Down
2 changes: 1 addition & 1 deletion src/core/server/saved_objects/status.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import { Observable, combineLatest } from 'rxjs';
import { startWith, map } from 'rxjs/operators';
import { ServiceStatus, ServiceStatusLevels } from '../status';
import { SavedObjectStatusMeta } from './types';
import { OpenSearchDashboardsMigratorStatus } from './migrations/opensearch-dashboards';
import { OpenSearchDashboardsMigratorStatus } from './migrations/opensearch_dashboards';

export const calculateStatus$ = (
rawMigratorStatus$: Observable<OpenSearchDashboardsMigratorStatus>,
Expand Down