ymanager/webapp/src/app/services/util/config.service.ts @ 4ccb6b62
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 |
}
|