Skip to content
Snippets Groups Projects
Select Git revision
  • c3bb5cc19a5186684356c20d2fca69250075dda0
  • main default protected
  • OZG-8252-gitlab-pipelines
  • OZG-7856_schadcode_scanner
  • release
  • develop
  • OZG-4097-OSI2-Anbindung
  • OZG-7689_use-new-pm
  • fix-dependencies
  • CommandRepositoryRefactoring
  • OZG-5580-torsten-test-20240902
  • OZG-5580-Configure-To-Connect-To-Zufi
  • fix-keycloak-metadata
  • ozg-3938-disable-grpc-tls
  • OZG-4906
  • 2.28.0
  • 2.27.0
  • 2.26.0
  • 2.25.0
  • 2.24.2
  • 2.24.1
  • 2.24.0
  • 2.23.0
  • 2.22.0
  • 2.21.0
  • 2.20.0
  • 2.19.0
  • 2.18.0
  • 2.17.1
  • 2.17.0
  • 2.16.1
  • 2.16.0
  • 2.15.0
  • 2.14.1
  • bescheid-manager-1.18.0
35 results

run_helm_test.sh

Blame
  • collaboration.service.ts 518 B
    import { Injectable } from '@angular/core';
    import { BehaviorSubject, Observable } from 'rxjs';
    
    @Injectable()
    export class CollaborationService {
      showAnfrageFormular$: BehaviorSubject<boolean> = new BehaviorSubject(false);
    
      public isAnfrageFormularVisible(): Observable<boolean> {
        return this.showAnfrageFormular$.asObservable();
      }
    
      public showAnfrageFormular(): void {
        this.showAnfrageFormular$.next(true);
      }
    
      public hideAnfrageFormular(): void {
        this.showAnfrageFormular$.next(false);
      }
    }