mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-15 09:46:16 +01:00
rename trailer to contributor
This commit is contained in:
@@ -36,7 +36,7 @@ export type Changeset = Collection & {
|
||||
date: Date;
|
||||
author: Person;
|
||||
description: string;
|
||||
trailers: Trailer[];
|
||||
contributors: Contributor[];
|
||||
_links: Links;
|
||||
_embedded: {
|
||||
tags?: Tag[];
|
||||
@@ -45,9 +45,9 @@ export type Changeset = Collection & {
|
||||
};
|
||||
};
|
||||
|
||||
export type Trailer = {
|
||||
export type Contributor = {
|
||||
person: Person;
|
||||
trailerType: string;
|
||||
type: string;
|
||||
};
|
||||
|
||||
export type ParentChangeset = {
|
||||
|
||||
@@ -34,7 +34,7 @@ export { RepositoryType, RepositoryTypeCollection } from "./RepositoryTypes";
|
||||
|
||||
export { Branch, BranchRequest } from "./Branches";
|
||||
|
||||
export { Changeset, Person, Trailer, ParentChangeset } from "./Changesets";
|
||||
export { Changeset, Person, Contributor, ParentChangeset } from "./Changesets";
|
||||
|
||||
export { Tag } from "./Tags";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user