Finish rename Role to RepositoryRole

This commit is contained in:
René Pfeuffer
2019-05-16 13:36:11 +02:00
parent 510ea51e76
commit 3ea4810346
14 changed files with 105 additions and 95 deletions

View File

@@ -1,12 +1,12 @@
// @flow
import React from "react";
import { translate } from "react-i18next";
import type { Role } from "@scm-manager/ui-types";
import type { RepositoryRole } from "@scm-manager/ui-types";
import PermissionRoleRow from "./PermissionRoleRow";
type Props = {
baseUrl: string,
roles: Role[],
roles: RepositoryRole[],
t: string => string
};