Projekt

Obecné

Profil

Stáhnout (252 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
import {Injectable} from '@angular/core';
2

    
3
@Injectable({
4
  providedIn: 'root'
5
})
6
export class Config {
7
  baseUrl: string;
8
  redirectUrl: string;
9

    
10
  get loginUrl(): string {
11
    return this.baseUrl + '/api/login/google?target=' + this.redirectUrl;
12
  }
13
}
(1-1/5)