18 lines
503 B
TypeScript
18 lines
503 B
TypeScript
import { HttpClient } from '@angular/common/http';
|
|
import { Injectable } from '@angular/core';
|
|
import { map, Observable } from 'rxjs';
|
|
import { environment } from 'src/environments/environment';
|
|
|
|
@Injectable({
|
|
providedIn: 'root',
|
|
})
|
|
export class OrganizeeService {
|
|
apiUrl: string;
|
|
tokenKey: string;
|
|
|
|
constructor(private http: HttpClient) {
|
|
// On se sert des variables d'environnement de notre application
|
|
this.apiUrl = environment.apiUrl;
|
|
this.tokenKey = environment.tokenKey;
|
|
}
|
|
}
|