Skip to content
Snippets Groups Projects
Select Git revision
  • bab5d2f9b113d941e77c30cd5161660e4499a8eb
  • master default protected
  • add-frequency-to-form
  • dev protected
  • ckan-2.11.0
  • add-package-custom-fields
  • fix-adding-datasets-for-users-and-editors
  • add-auth-subroute
  • 71-migrate-custom-fields-to-ckanext-scheming
  • add-author-maintainer-information
  • fix-inline-flex-btns
  • fix-known-spatial-uri-validation
  • py3
  • 47-aktuelle-resource-einer-collection-wird-nicht-mehr-gefunden
  • 10-eingabe-der-dct-accrualperiodicity-in-weboberflache
  • v1.3
  • 2.5.3
  • 2.5.2
  • 2.5.1
  • 2.5.0
  • 2.4.7
  • 2.4.6
  • 2.4.5
  • 2.4.4
  • 2.4.3
  • 2.4.2
  • 2.4.1
  • 2.4.0
  • 2.3.1
  • 2.3.0
  • 2.2.0
  • 2.1.0
  • 2.0.0
  • 1.4.3
  • 1.4.2
  • 1.4.1
36 results

setup_proxy.py

Blame
  • user-profile.button-container.component.ts 730 B
    import { Component, OnInit } from '@angular/core';
    import { AuthenticationService } from 'libs/authentication/src/lib/authentication.service';
    
    @Component({
      selector: 'user-profile-button-container',
      templateUrl: './user-profile-button-container.component.html',
      styleUrls: ['./user-profile-button-container.component.scss'],
    })
    export class UserProfileButtonContainerComponent implements OnInit {
      public currentUserInitials: string;
    
      constructor(public authenticationService: AuthenticationService) {}
    
      ngOnInit(): void {
        this.currentUserInitials = this.authenticationService.getCurrentUserInitials();
      }
    
      public showDropDown(): void {
        document.getElementById('myDropdown').classList.toggle('show');
      }
    }