mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-10 19:52:53 +00:00
fix: correct property order
This commit is contained in:
@@ -25,7 +25,7 @@ import {
|
|||||||
Milestone,
|
Milestone,
|
||||||
Project,
|
Project,
|
||||||
Tag,
|
Tag,
|
||||||
TreeFile
|
TreeFile,
|
||||||
} from './types';
|
} from './types';
|
||||||
|
|
||||||
export const logger = new Logger();
|
export const logger = new Logger();
|
||||||
|
|||||||
20
src/types.ts
20
src/types.ts
@@ -244,18 +244,18 @@ export interface ThingWithTimeStats {
|
|||||||
* A GitLab group
|
* A GitLab group
|
||||||
*/
|
*/
|
||||||
export interface Group {
|
export interface Group {
|
||||||
id: number;
|
|
||||||
web_url: string;
|
|
||||||
name: string;
|
|
||||||
path: string;
|
|
||||||
description: string;
|
|
||||||
visibility: string;
|
|
||||||
lfs_enabled: boolean;
|
|
||||||
avatar_url: string;
|
avatar_url: string;
|
||||||
request_access_enabled: boolean;
|
description: string;
|
||||||
full_name: string;
|
full_name: string;
|
||||||
full_path: string;
|
full_path: string;
|
||||||
parent_id: number;
|
id: number;
|
||||||
ldap_cn: string;
|
|
||||||
ldap_access: string;
|
ldap_access: string;
|
||||||
|
ldap_cn: string;
|
||||||
|
lfs_enabled: boolean;
|
||||||
|
name: string;
|
||||||
|
parent_id: number;
|
||||||
|
path: string;
|
||||||
|
request_access_enabled: boolean;
|
||||||
|
visibility: string;
|
||||||
|
web_url: string;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user