calendrier : fin + gestion des roles + debug
This commit is contained in:
parent
f02e3b630e
commit
68aae07bb3
@ -57,7 +57,11 @@
|
||||
(click)="navigateNext($event)"
|
||||
>Next</a
|
||||
>
|
||||
team : {{ teamId }} - user: {{ userId }} - role: {{ role }}
|
||||
|
||||
<!-- DEBUT : Pour le debugage -->
|
||||
<span *ngIf="debug">team : {{ teamId }} - user: {{ userId }} - role: {{ role }}</span>
|
||||
<!-- FIN : Pour le debugage -->
|
||||
|
||||
<span style="float: right"
|
||||
><a
|
||||
href="#"
|
||||
|
@ -10,7 +10,7 @@ import jwt_decode from 'jwt-decode';
|
||||
styleUrls: ['./page-agenda.component.scss']
|
||||
})
|
||||
export class PageAgendaComponent implements AfterViewInit {
|
||||
|
||||
debug: boolean;
|
||||
userId : any;
|
||||
teamId : any;
|
||||
role:any;
|
||||
@ -23,6 +23,7 @@ export class PageAgendaComponent implements AfterViewInit {
|
||||
constructor(private evenementService:EvenementService) {
|
||||
this.isShow = false;
|
||||
this.alert = "";
|
||||
this.debug = environment.debug;
|
||||
}
|
||||
|
||||
get date(): DayPilot.Date {
|
||||
|
@ -6,6 +6,7 @@ export const environment = {
|
||||
production: false,
|
||||
apiUrl: 'http://localhost:8080',
|
||||
tokenKey: 'TOKEN-ORGANIZEE',
|
||||
debug: true,
|
||||
};
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user