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