Skip to content
Snippets Groups Projects
Select Git revision
  • 61c8b9b9c0a52f1488d5dd7a59224c5d7e58b186
  • master default
  • rtde
  • tmp-gpg-key-workaround-2
  • tmp-gpg-key-workaround
  • 68-git-lfs-error-in-ddeploy-job
  • split-build-and-test
  • 66-jazzy-support
  • 62-deploy-jobs-do-not-pull-files-from-lfs-manual-lfs-pull
  • 62-deploy-jobs-do-not-pull-files-from-lfs-custom-docker-image
  • py3-without-industrial-ci-test
  • 58-add-yolo-pip-package-support
  • 55-collision-between-test-jobs-due-to-dds-autodiscovery-ros2
  • 52-ddeploy-job-failing-when-enforcing-labels-alt-quick-dind-test
  • 48-python3_syntax
  • 46-default-docker-image-name-too-long
  • 45-double-pipeline-triggered-if-merge-request-has-melodic-branch-name
  • 40-repo-is-ros-testing
  • test-badges
  • test-lfs-concept
  • add-packages
21 results

README.md

Blame
  • group-representation.model.ts 540 B
    
    export interface IGroupRepresentation {
        id?: string;
        name?: string;
        path?: string;
        subGroups?: Array<IGroupRepresentation>;
      }
      
      export class GroupRepresentation implements IGroupRepresentation {
        constructor(
          public id?: string,
          public name?: string,
          public path?: string,
          public subGroups?:  Array<IGroupRepresentation>
        ) {}
      }
      
      export function getGroupRepresentationIdentifier(groupRepresentation: IGroupRepresentation): string | undefined {
        return groupRepresentation.id;
      }