changements mineurs

develop
Yanaël GRETTE 4 years ago
parent 559af3456f
commit 56539b4556
  1. 2
      src/app/home/home.component.ts
  2. 20
      src/app/shared/api-swagger/api/collaborateurs.service.ts
  3. 2
      src/app/shared/api-swagger/api/demandesDelegation.service.ts
  4. 2
      src/app/shared/api-swagger/api/demandesEPI.service.ts
  5. 2
      src/app/shared/api-swagger/api/demandesformation.service.ts
  6. 2
      src/app/shared/api-swagger/api/engagements.service.ts
  7. 2
      src/app/shared/api-swagger/api/ep.service.ts
  8. 2
      src/app/shared/api-swagger/api/formations.service.ts
  9. 2
      src/app/shared/api-swagger/api/notes.service.ts
  10. 2
      src/app/shared/api-swagger/api/participationsFormations.service.ts
  11. 2
      src/app/shared/api-swagger/api/referentsEP.service.ts
  12. 2
      src/environments/environment.ts

@ -23,7 +23,7 @@ export class HomeComponent implements OnInit {
*/ */
userRole : string; userRole : string;
constructor(private authService: AuthService) { constructor(private authService: AuthService) {
this.userRole = authService.firstRole; this.userRole = authService.firstRole;
} }

@ -3,7 +3,7 @@
* API qui sra utilisée afin de faire communiquer le client et le serveur ainsi que le serveur et la boîte noire. * API qui sra utilisée afin de faire communiquer le client et le serveur ainsi que le serveur et la boîte noire.
* *
* OpenAPI spec version: 1.3.6 * OpenAPI spec version: 1.3.6
* *
* *
* NOTE: This class is auto generated by the swagger code generator program. * NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git * https://github.com/swagger-api/swagger-codegen.git
@ -27,7 +27,7 @@ import { Configuration } from '../configurat
@Injectable() @Injectable()
export class CollaborateursService { export class CollaborateursService {
protected basePath = 'http://localhost:3000/api'; protected basePath = 'https://localhost:44393/api';
public defaultHeaders = new HttpHeaders(); public defaultHeaders = new HttpHeaders();
public configuration = new Configuration(); public configuration = new Configuration();
@ -57,7 +57,7 @@ export class CollaborateursService {
/** /**
* *
* Récupérer un collaborateur par son id. * Récupérer un collaborateur par son id.
* @param idCollaborateur Id du collaborateur * @param idCollaborateur Id du collaborateur
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
@ -105,7 +105,7 @@ export class CollaborateursService {
} }
/** /**
* *
* Récupérer un collaborateur par son mail. * Récupérer un collaborateur par son mail.
* @param mail Mail de l'utilisateur connecté (mail obtenu via le token Keycloak) * @param mail Mail de l'utilisateur connecté (mail obtenu via le token Keycloak)
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
@ -142,7 +142,7 @@ export class CollaborateursService {
const consumes: string[] = [ const consumes: string[] = [
]; ];
return this.httpClient.request<CollaborateurDTO>('get',`${this.basePath}/collaborateurs/${encodeURIComponent(String(mail))}`, return this.httpClient.request<CollaborateurDTO>('get',`${this.basePath}/collaborateurs/${encodeURIComponent(String(mail))}/mail`,
{ {
withCredentials: this.configuration.withCredentials, withCredentials: this.configuration.withCredentials,
headers: headers, headers: headers,
@ -153,7 +153,7 @@ export class CollaborateursService {
} }
/** /**
* *
* Récupérer une liste de collaborateurs. * Récupérer une liste de collaborateurs.
* @param roles Liste des rôles auquels appartiennent les collaborateurs (e.g [CP, Commerciaux,RA]) * @param roles Liste des rôles auquels appartiennent les collaborateurs (e.g [CP, Commerciaux,RA])
* @param idBUs liste des ids des BU auxquelles les données sont rattachées * @param idBUs liste des ids des BU auxquelles les données sont rattachées
@ -248,7 +248,7 @@ export class CollaborateursService {
} }
/** /**
* *
* Récupérer la liste des collaborateurs dun référent. * Récupérer la liste des collaborateurs dun référent.
* @param idReferent Id d&#x27;un référent * @param idReferent Id d&#x27;un référent
* @param asc Indique si les données sont récupérées dans l&#x27;ordre croissant ou non * @param asc Indique si les données sont récupérées dans l&#x27;ordre croissant ou non
@ -324,7 +324,7 @@ export class CollaborateursService {
} }
/** /**
* *
* Récupérer le nombre total de collaborateurs dun référent. * Récupérer le nombre total de collaborateurs dun référent.
* @param idReferent Id d&#x27;un référent * @param idReferent Id d&#x27;un référent
* @param asc Indique si les données sont récupérées dans l&#x27;ordre croissant ou non * @param asc Indique si les données sont récupérées dans l&#x27;ordre croissant ou non
@ -400,7 +400,7 @@ export class CollaborateursService {
} }
/** /**
* *
* Récupérer le nombre total de collaborateurs. * Récupérer le nombre total de collaborateurs.
* @param roles Liste des rôles auquels appartiennent les collaborateurs (e.g [CP, Commerciaux,RA]) * @param roles Liste des rôles auquels appartiennent les collaborateurs (e.g [CP, Commerciaux,RA])
* @param idBUs liste des ids des BU auxquelles les données sont rattachées * @param idBUs liste des ids des BU auxquelles les données sont rattachées
@ -495,7 +495,7 @@ export class CollaborateursService {
} }
/** /**
* *
* Récupérer la liste des référents des précédents EP du collaborateur. * Récupérer la liste des référents des précédents EP du collaborateur.
* @param idCollaborateur Id du collaborateur * @param idCollaborateur Id du collaborateur
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.

@ -27,7 +27,7 @@ import { Configuration } from '../configurat
@Injectable() @Injectable()
export class DemandesDelegationService { export class DemandesDelegationService {
protected basePath = 'http://localhost:3000/api'; protected basePath = 'https://localhost:44393/api';
public defaultHeaders = new HttpHeaders(); public defaultHeaders = new HttpHeaders();
public configuration = new Configuration(); public configuration = new Configuration();

@ -28,7 +28,7 @@ import { Configuration } from '../configurat
@Injectable() @Injectable()
export class DemandesEPIService { export class DemandesEPIService {
protected basePath = 'http://localhost:3000/api'; protected basePath = 'https://localhost:44393/api';
public defaultHeaders = new HttpHeaders(); public defaultHeaders = new HttpHeaders();
public configuration = new Configuration(); public configuration = new Configuration();

@ -29,7 +29,7 @@ import { Configuration } from '../configurat
@Injectable() @Injectable()
export class DemandesFormationService { export class DemandesFormationService {
protected basePath = 'http://localhost:3000/api'; protected basePath = 'https://localhost:44393/api';
public defaultHeaders = new HttpHeaders(); public defaultHeaders = new HttpHeaders();
public configuration = new Configuration(); public configuration = new Configuration();

@ -28,7 +28,7 @@ import { Configuration } from '../configurat
@Injectable() @Injectable()
export class EngagementsService { export class EngagementsService {
protected basePath = 'http://localhost:3000/api'; protected basePath = 'https://localhost:44393/api';
public defaultHeaders = new HttpHeaders(); public defaultHeaders = new HttpHeaders();
public configuration = new Configuration(); public configuration = new Configuration();

@ -29,7 +29,7 @@ import { Configuration } from '../configurat
@Injectable() @Injectable()
export class EpService { export class EpService {
protected basePath = 'http://localhost:3000/api'; protected basePath = 'https://localhost:44393/api';
public defaultHeaders = new HttpHeaders(); public defaultHeaders = new HttpHeaders();
public configuration = new Configuration(); public configuration = new Configuration();

@ -32,7 +32,7 @@ import { Configuration } from '../configurat
@Injectable() @Injectable()
export class FormationsService { export class FormationsService {
protected basePath = 'http://localhost:3000/api'; protected basePath = 'https://localhost:44393/api';
public defaultHeaders = new HttpHeaders(); public defaultHeaders = new HttpHeaders();
public configuration = new Configuration(); public configuration = new Configuration();

@ -28,7 +28,7 @@ import { Configuration } from '../configurat
@Injectable() @Injectable()
export class NotesService { export class NotesService {
protected basePath = 'http://localhost:3000/api'; protected basePath = 'https://localhost:44393/api';
public defaultHeaders = new HttpHeaders(); public defaultHeaders = new HttpHeaders();
public configuration = new Configuration(); public configuration = new Configuration();

@ -28,7 +28,7 @@ import { Configuration } from '../configurat
@Injectable() @Injectable()
export class ParticipationsFormationsService { export class ParticipationsFormationsService {
protected basePath = 'http://localhost:3000/api'; protected basePath = 'https://localhost:44393/api';
public defaultHeaders = new HttpHeaders(); public defaultHeaders = new HttpHeaders();
public configuration = new Configuration(); public configuration = new Configuration();

@ -27,7 +27,7 @@ import { Configuration } from '../configurat
@Injectable() @Injectable()
export class ReferentsEPService { export class ReferentsEPService {
protected basePath = 'http://localhost:3000/api'; protected basePath = 'https://localhost:44393/api';
public defaultHeaders = new HttpHeaders(); public defaultHeaders = new HttpHeaders();
public configuration = new Configuration(); public configuration = new Configuration();

@ -19,7 +19,7 @@ const keycloakConfig: AuthConfig = {
// and it might not enforce further best practices vital for security // and it might not enforce further best practices vital for security
// such applications. // such applications.
//dummyClientSecret: 'f27746f4-e603-441e-a256-3ddd5b19ba54', //dummyClientSecret: 'f27746f4-e603-441e-a256-3ddd5b19ba54',
dummyClientSecret: '82702d7b-e44b-4415-9c80-54774a58e1dc', dummyClientSecret: '201a3d53-7cd5-4613-bcb6-f2e98c1ba2ec',
responseType: 'code', responseType: 'code',
silentRefreshRedirectUri: window.location.origin + '/silent-refresh.html' , silentRefreshRedirectUri: window.location.origin + '/silent-refresh.html' ,

Loading…
Cancel
Save