mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-06 13:35:44 +01:00
renaming of repository-types files to repositoryTypes
This commit is contained in:
@@ -6,7 +6,7 @@ import { routerReducer, routerMiddleware } from "react-router-redux";
|
||||
|
||||
import users from "./users/modules/users";
|
||||
import repos from "./repos/modules/repos";
|
||||
import repositoryTypes from "./repos/modules/repository-types";
|
||||
import repositoryTypes from "./repos/modules/repositoryTypes";
|
||||
import auth from "./modules/auth";
|
||||
import pending from "./modules/pending";
|
||||
import failure from "./modules/failure";
|
||||
|
||||
@@ -10,7 +10,7 @@ import {
|
||||
getFetchRepositoryTypesFailure,
|
||||
getRepositoryTypes,
|
||||
isFetchRepositoryTypesPending
|
||||
} from "../modules/repository-types";
|
||||
} from "../modules/repositoryTypes";
|
||||
import {
|
||||
createRepo,
|
||||
createRepoReset,
|
||||
|
||||
@@ -499,7 +499,7 @@ describe("repos fetch", () => {
|
||||
status: 204
|
||||
});
|
||||
|
||||
let editedFjords = {...slartiFjords};
|
||||
let editedFjords = { ...slartiFjords };
|
||||
editedFjords.description = "coast of africa";
|
||||
|
||||
const store = mockStore({});
|
||||
@@ -516,7 +516,7 @@ describe("repos fetch", () => {
|
||||
status: 204
|
||||
});
|
||||
|
||||
let editedFjords = {...slartiFjords};
|
||||
let editedFjords = { ...slartiFjords };
|
||||
editedFjords.description = "coast of africa";
|
||||
|
||||
const store = mockStore({});
|
||||
|
||||
@@ -14,8 +14,8 @@ import {
|
||||
getRepositoryTypes,
|
||||
isFetchRepositoryTypesPending,
|
||||
shouldFetchRepositoryTypes
|
||||
} from "./repository-types";
|
||||
import reducer from "./repository-types";
|
||||
} from "./repositoryTypes";
|
||||
import reducer from "./repositoryTypes";
|
||||
|
||||
const git = {
|
||||
name: "git",
|
||||
Reference in New Issue
Block a user