mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 20:47:54 +00:00
add margin
This commit is contained in:
@@ -243,6 +243,7 @@
|
||||
[(ngModel)]="postEvent.StartDate"
|
||||
[max]="maxDate"
|
||||
[disabled]="disabled"
|
||||
(ngModelChange)="onDateChange($event)"
|
||||
>
|
||||
<mat-datepicker-toggle id="new-inicio" matSuffix [for]="picker1"></mat-datepicker-toggle>
|
||||
<ngx-mat-datetime-picker #picker1
|
||||
@@ -273,6 +274,7 @@
|
||||
[(ngModel)]="postEvent.StartDate"
|
||||
[max]="maxDate"
|
||||
[disabled]="disabled"
|
||||
(ngModelChange)="onDateChange($event)"
|
||||
>
|
||||
<mat-datepicker-toggle id="new-inicio" matSuffix [for]="picker1"></mat-datepicker-toggle>
|
||||
<ngx-mat-datetime-picker #picker1
|
||||
|
||||
@@ -427,6 +427,19 @@ export class EditEventPage implements OnInit {
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
onDateChange(e) {
|
||||
|
||||
const cloneDateStartDate = new Date(this.postEvent.StartDate);
|
||||
const cloneDateEndDate = new Date(this.postEvent.EndDate);
|
||||
|
||||
if(cloneDateStartDate.getTime() >= cloneDateEndDate.getTime()) {
|
||||
cloneDateStartDate.setHours(cloneDateStartDate.getHours() + 1);
|
||||
this.postEvent.EndDate = cloneDateStartDate
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@XTracerAsync({name:'mobile/create-event', bugPrint: true, daley: 4000})
|
||||
async save_v2(tracing?: TracingType) {
|
||||
this.injectValidation()
|
||||
@@ -674,7 +687,7 @@ export class EditEventPage implements OnInit {
|
||||
}
|
||||
|
||||
onCheckboxChange(event: any) {
|
||||
console.log(this.postEvent.CalendarId)
|
||||
|
||||
if (this.allDayCheck) {
|
||||
this.postEvent.IsAllDayEvent = this.allDayCheck;
|
||||
this.postEvent.StartDate = this.setAlldayTime(this.postEvent.StartDate)
|
||||
|
||||
@@ -196,6 +196,7 @@
|
||||
placeholder="Data Inicio*"
|
||||
[(ngModel)]="postEvent.StartDate"
|
||||
[disabled]="disabled"
|
||||
(ngModelChange)="onDateChange($event)"
|
||||
>
|
||||
<mat-datepicker-toggle id="new-inicio" matSuffix [for]="picker1" ></mat-datepicker-toggle>
|
||||
<ngx-mat-datetime-picker #picker1
|
||||
@@ -220,6 +221,7 @@
|
||||
placeholder="Data Inicio*"
|
||||
[(ngModel)]="postEvent.StartDate"
|
||||
[disabled]="disabled"
|
||||
(ngModelChange)="onDateChange($event)"
|
||||
>
|
||||
<mat-datepicker-toggle id="new-inicio" matSuffix [for]="picker1" ></mat-datepicker-toggle>
|
||||
<ngx-mat-datetime-picker #picker1
|
||||
|
||||
@@ -340,6 +340,19 @@ export class NewEventPage implements OnInit {
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
onDateChange(e) {
|
||||
|
||||
const cloneDateStartDate = new Date(this.postEvent.StartDate);
|
||||
const cloneDateEndDate = new Date(this.postEvent.EndDate);
|
||||
|
||||
if(cloneDateStartDate.getTime() >= cloneDateEndDate.getTime()) {
|
||||
cloneDateStartDate.setHours(cloneDateStartDate.getHours() + 1);
|
||||
this.postEvent.EndDate = cloneDateStartDate
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
onSelectedRecurringChanged(ev: any) {
|
||||
|
||||
this.calculetedLastOccurrence(ev);
|
||||
|
||||
@@ -152,6 +152,7 @@
|
||||
displayFormat="D MMM YYYY H:mm"
|
||||
minuteValues="0,5,10,15,20,25,30,35,40,45,50,55"
|
||||
monthShortNames="Jan, Fev, Mar, Abr, Mai, Jun, Jul, Aug, Sep, Out, Nov, Dez"
|
||||
(ngModelChange)="onDateChange($event)"
|
||||
>
|
||||
</ion-datetime>
|
||||
|
||||
@@ -160,6 +161,7 @@
|
||||
placeholder="Choose a date"
|
||||
[(ngModel)]="eventProcess.workflowInstanceDataFields.StartDate"
|
||||
[disabled]="disabled"
|
||||
(ngModelChange)="onDateChange($event)"
|
||||
>
|
||||
<mat-datepicker-toggle id="new-inicio" matSuffix [for]="picker1"></mat-datepicker-toggle>
|
||||
<ngx-mat-datetime-picker #picker1
|
||||
|
||||
@@ -75,6 +75,7 @@ export class EditEventToApprovePage implements OnInit {
|
||||
Attachments: [],
|
||||
serialNumber: "",
|
||||
taskStartDate: "",
|
||||
activityInstanceName: "",
|
||||
workflowInstanceDataFields: {
|
||||
Body: "",
|
||||
OccurrenceType: '',
|
||||
@@ -234,6 +235,19 @@ export class EditEventToApprovePage implements OnInit {
|
||||
}
|
||||
|
||||
|
||||
onDateChange(e) {
|
||||
|
||||
const cloneDateStartDate = new Date(this.eventProcess.workflowInstanceDataFields.StartDate);
|
||||
const cloneDateEndDate = new Date(this.eventProcess.workflowInstanceDataFields.EndDate);
|
||||
|
||||
if(cloneDateStartDate.getTime() >= cloneDateEndDate.getTime()) {
|
||||
cloneDateStartDate.setHours(cloneDateStartDate.getHours() + 1);
|
||||
this.eventProcess.workflowInstanceDataFields.EndDate = cloneDateStartDate as any
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
defineLastOccurrence(valor: number, opcao: boolean) {
|
||||
var time = new Date(this.eventProcess.workflowInstanceDataFields.EndDate);
|
||||
if (opcao == true) {
|
||||
@@ -513,12 +527,7 @@ export class EditEventToApprovePage implements OnInit {
|
||||
async gravasAction() {
|
||||
|
||||
await this.save();
|
||||
|
||||
if (this.eventProcess['activityInstanceName'] == 'Editar Evento') {
|
||||
this.reenviar();
|
||||
} else {
|
||||
this.toastService._badRequest('Pedimos desculpa mas não foi possível executar a acção. Por favor, contacte o apoio técnico. #this.eventProcess["activityInstanceName"] == "Editar Evento"')
|
||||
}
|
||||
this.reenviar();
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -232,7 +232,9 @@
|
||||
|
||||
<mat-form-field appearance="none" floatLabel="never" class="date-hour-picker">
|
||||
<input matInput [ngxMatDatetimePicker]="picker1" placeholder="Choose a date"
|
||||
[(ngModel)]="_postEvent.StartDate" [max]="maxDate" [disabled]="disabled">
|
||||
[(ngModel)]="_postEvent.StartDate" [max]="maxDate" [disabled]="disabled"
|
||||
(ngModelChange)="onDateChange($event)"
|
||||
>
|
||||
<mat-datepicker-toggle id="new-inicio" matSuffix [for]="picker1"></mat-datepicker-toggle>
|
||||
<ngx-mat-datetime-picker #picker1 [showSpinners]="showSpinners" [showSeconds]="showSeconds"
|
||||
[stepHour]="stepHour" [stepMinute]="stepMinute" [stepSecond]="stepSecond" [touchUi]="touchUi" [hideTime]="true">
|
||||
@@ -252,7 +254,7 @@
|
||||
|
||||
<mat-form-field appearance="none" floatLabel="never" class="date-hour-picker">
|
||||
<input matInput [ngxMatDatetimePicker]="picker1" placeholder="Choose a date"
|
||||
[(ngModel)]="_postEvent.StartDate" [max]="maxDate" [disabled]="disabled">
|
||||
[(ngModel)]="_postEvent.StartDate" [max]="maxDate" [disabled]="disabled" (ngModelChange)="onDateChange($event)">
|
||||
<mat-datepicker-toggle id="new-inicio" matSuffix [for]="picker1"></mat-datepicker-toggle>
|
||||
<ngx-mat-datetime-picker #picker1 [showSpinners]="showSpinners" [showSeconds]="showSeconds"
|
||||
[stepHour]="stepHour" [stepMinute]="stepMinute" [stepSecond]="stepSecond" [touchUi]="touchUi" [hideTime]="false">
|
||||
@@ -272,7 +274,7 @@
|
||||
|
||||
<mat-form-field appearance="none" floatLabel="never" floatLabel="never" class="date-hour-picker">
|
||||
<input matInput [ngxMatDatetimePicker]="fim" placeholder="Choose a date" [(ngModel)]="_postEvent.EndDate"
|
||||
[max]="maxDate" [disabled]="disabled" [min]="_postEvent.StartDate">
|
||||
[max]="maxDate" [disabled]="disabled" [min]="_postEvent.StartDate" >
|
||||
<mat-datepicker-toggle id="new-fim" matSuffix [for]="fim"></mat-datepicker-toggle>
|
||||
<ngx-mat-datetime-picker #fim [showSpinners]="showSpinners" [showSeconds]="showSeconds"
|
||||
[stepHour]="stepHour" [stepMinute]="stepMinute" [stepSecond]="stepSecond" [hideTime]="true">
|
||||
|
||||
@@ -519,6 +519,17 @@ export class EditEventPage implements OnInit {
|
||||
this.clearContact.emit();
|
||||
}
|
||||
|
||||
onDateChange(e) {
|
||||
|
||||
const cloneDateStartDate = new Date(this._postEvent.StartDate);
|
||||
const cloneDateEndDate = new Date(this._postEvent.EndDate);
|
||||
|
||||
if(cloneDateStartDate.getTime() >= cloneDateEndDate.getTime()) {
|
||||
cloneDateStartDate.setHours(cloneDateStartDate.getHours() + 1);
|
||||
this._postEvent.EndDate = cloneDateStartDate
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
saveTemporaryData() {
|
||||
|
||||
|
||||
@@ -113,6 +113,7 @@
|
||||
placeholder="Choose a date"
|
||||
[(ngModel)]="startDate"
|
||||
[disabled]="disabled"
|
||||
(ngModelChange)="onDateChange($event)"
|
||||
>
|
||||
<mat-datepicker-toggle id="new-inicio" matSuffix [for]="picker1"></mat-datepicker-toggle>
|
||||
<ngx-mat-datetime-picker #picker1
|
||||
@@ -285,7 +286,7 @@
|
||||
</ion-label>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="d-flex container-div width-100" >
|
||||
<ion-list class="width-100 ">
|
||||
<ion-item class="width-100" *ngFor="let document of loadedAttachments; let i = index">
|
||||
|
||||
@@ -259,12 +259,23 @@ export class EditEventToApproveComponent implements OnInit {
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
close() {
|
||||
this.modalController.dismiss();
|
||||
}
|
||||
|
||||
|
||||
onDateChange(e) {
|
||||
|
||||
const cloneDateStartDate = new Date(this.startDate);
|
||||
const cloneDateEndDate = new Date(this.endDate);
|
||||
|
||||
if(cloneDateStartDate.getTime() >= cloneDateEndDate.getTime()) {
|
||||
cloneDateStartDate.setHours(cloneDateStartDate.getHours() + 1);
|
||||
this.endDate = cloneDateStartDate as any
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@XTracerAsync({name:'desktop/edit-event', bugPrint: true, daley: 4000})
|
||||
async save(tracing?: TracingType) {
|
||||
// set dates to eventProcess object
|
||||
|
||||
+298
-298
@@ -1,298 +1,298 @@
|
||||
<div style="background-color:#F6F6F6;">
|
||||
<table width="100%" style="border-collapse:collapse; border-spacing:0px; padding:0; width:100%; height:100%; background-repeat:repeat; background-position:center top; background-color:#F6F6F6;">
|
||||
<tbody>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td valign="top" style="padding:0;">
|
||||
<table align="center" style="border-collapse:collapse; border-spacing:0px; width:100%;">
|
||||
<tbody>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td style="padding:0; background-color:#f5f7fb; background-size:cover;" align="center">
|
||||
<table style="border-collapse:collapse; border-spacing:0px; background-color:transparent; width:680px;" align="center">
|
||||
<tbody>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td align="left" style="padding-top:10px; padding-bottom:10px; padding-left:20px; padding-right:20px;">
|
||||
<table width="100%" style="border-collapse:collapse; border-spacing:0px;">
|
||||
<tbody>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td valign="top" align="center" style="padding:0; width:640px;">
|
||||
<table width="100%" style="border-collapse:collapse; border-spacing:0px;">
|
||||
<tbody>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td align="left" style="padding:0;">
|
||||
<p style="font-family:arial, 'helvetica neue', helvetica, sans-serif; color:#000000; font-size:12px;">
|
||||
<br>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td align="left" style="padding:0; padding-top:10px; padding-left:20px; padding-right:20px; background-color:#ffffff;">
|
||||
<table width="100%" style="border-collapse:collapse; border-spacing:0px;">
|
||||
<tbody>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td valign="top" align="center" style="padding:0; width:640px;">
|
||||
<table width="100%" style="border-collapse:collapse; border-spacing:0px;">
|
||||
<tbody>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td align="center" style="padding:0; padding-bottom:25px; padding-top:40px; font-size:0px;">
|
||||
<img src="https://gwjkdh.stripocdn.email/content/guids/videoImgGuid/images/governo_de_angola_horizontal_logo_MH1.png" style="display:block; border:0; text-decoration:none;" alt="Logo" title="Logo" width="160" height="136">
|
||||
</td>
|
||||
</tr>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td align="center" style="padding:0; padding-top:15px; padding-bottom:15px;">
|
||||
<h1 style="font-family:arial, 'helvetica neue', helvetica, sans-serif; font-size:22px; font-style:normal; font-weight:bold; color:#000000;">República de Angola</h1>
|
||||
<p style="font-family:arial, 'helvetica neue', helvetica, sans-serif; color:#000000; font-size:22px;">
|
||||
<strong> Gabinete do Presidente da </strong>
|
||||
<span style="background-color:transparent; font-size:22px;">
|
||||
<font color="#000000" face="arial, helvetica neue, helvetica, sans-serif">
|
||||
<b>República</b>
|
||||
</font>
|
||||
</span>
|
||||
</p>
|
||||
<p style="font-family:arial, 'helvetica neue', helvetica, sans-serif; color:#000000; font-size:22px;">
|
||||
<strong>Convite para reunião</strong>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td align="left" style="padding:0; padding-left:40px; padding-right:40px; background-color:#ffffff;">
|
||||
<table align="right" style="border-collapse:collapse; border-spacing:0px;">
|
||||
<tbody>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td align="center" style="padding:0; width:174px;">
|
||||
<table width="100%" style="border-collapse:collapse; border-spacing:0px;">
|
||||
<tbody>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td align="center" style="padding:0; padding-top:10px; padding-left:20px; padding-right:20px; font-size:0;">
|
||||
<table width="100%" border="0" style="border-collapse:collapse; border-spacing:0px;">
|
||||
<tbody>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td style="padding:0; border-bottom:1px solid transparent; background:none; height:1px; width:100%; margin:0px;">
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td align="left" style="padding:0; background-color:#ffffff;">
|
||||
<table width="100%" style="border-collapse:collapse; border-spacing:0px;">
|
||||
<tbody>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td valign="top" align="center" style="padding:0; width:680px;">
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<table width="100%" style="border-collapse:collapse; border-spacing:0px;">
|
||||
<tbody>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td align="center" style="padding:0; font-size:0;">
|
||||
<table border="0" width="100%" style="border-collapse:collapse; border-spacing:0px;">
|
||||
<tbody>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td style="padding:0; border-bottom:1px solid #cccccc; background:unset; height:1px; width:100%; margin:0px;">
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td align="left" style="padding-top:15px; padding-bottom:20px; padding-left:40px; padding-right:40px;">
|
||||
<p style="color:rgb(169, 169, 169);">
|
||||
<strong style="">
|
||||
<font face="Arial" style="" size="2">Tipo de evento</font>
|
||||
</strong>
|
||||
</p>
|
||||
<p style="color:#0000ff;">
|
||||
<font face="Arial" style="">
|
||||
<font size="2"> EventType <br>
|
||||
</font>
|
||||
</font>
|
||||
</p>
|
||||
<p style="color:rgb(169, 169, 169);">
|
||||
<strong style="">
|
||||
<font face="Arial" style="" size="2">Data/Hora</font>
|
||||
</strong>
|
||||
</p>
|
||||
<p style="color:rgb(0, 0, 0);">
|
||||
<font face="Arial" style="">De StartDate a EndDate <font size="3"> </font>
|
||||
</font>
|
||||
</p>
|
||||
<p style="color:rgb(169, 169, 169);">
|
||||
<strong style="">
|
||||
<font face="Arial" style="" size="2">Localização</font>
|
||||
</strong>
|
||||
</p>
|
||||
<p style="color:rgb(0, 0, 0);"> Location <br>
|
||||
</p>
|
||||
<strong style="">
|
||||
<font face="Arial" style="" size="2">Participantes</font>
|
||||
</strong>
|
||||
<p>
|
||||
</p>
|
||||
<p style="color:rgb(0, 0, 0);"> Participants <br>
|
||||
</p>
|
||||
<font face="Arial" size="3"> If <br>
|
||||
</font>
|
||||
<strong style="">
|
||||
<font face="Arial" style="" size="2">Assunto</font>
|
||||
</strong>
|
||||
<p>
|
||||
</p>
|
||||
<p style="color:rgb(0, 0, 0);"> Subject <br>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td align="center" style="padding:0; font-size:0;">
|
||||
<table border="0" width="100%" style="border-collapse:collapse; border-spacing:0px;">
|
||||
<tbody>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td style="padding:0; border-bottom:1px solid #cccccc; background:unset; height:1px; width:100%; margin:0px;">
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td align="left" style="padding-top:15px; padding-bottom:20px; padding-left:40px; padding-right:40px;">
|
||||
<p style="font-family:arial, 'helvetica neue', helvetica, sans-serif; color:#a9a9a9; font-size:12px;">
|
||||
<strong>Mensagem</strong>
|
||||
</p>
|
||||
<p style="color:rgb(0, 0, 0);">Exmo. Sr. MDGPR,<br>
|
||||
<br>Cordiais saudações.<br>
|
||||
<br>Recebeu um novo pedido de evento, no qual requer Vossa aprovação.<br>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td align="center" style="padding:0; font-size:0;">
|
||||
<table border="0" width="100%" style="border-collapse:collapse; border-spacing:0px;">
|
||||
<tbody>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td style="padding:0; border-bottom:1px solid #cccccc; background:unset; height:1px; width:100%; margin:0px;">
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td align="left" style="padding-top:15px; padding-bottom:20px; padding-left:40px; padding-right:40px;">
|
||||
<p style="font-family:arial, 'helvetica neue', helvetica, sans-serif; color:#999999; font-size:12px;">
|
||||
<span style="background-color:transparent; text-align:center;">
|
||||
<font color="#a9a9a9">
|
||||
<br>Importante
|
||||
</font>
|
||||
</span>
|
||||
<span style="color:#0000ff; background-color:transparent; text-align:center;">
|
||||
</span>
|
||||
</p>
|
||||
<p style="font-family:arial, 'helvetica neue', helvetica, sans-serif; color:#999999; font-size:12px;">
|
||||
<span style="background-color:transparent; text-align:center; color:rgb(0, 0, 0);">
|
||||
<b>Caso tenha recebido esta mensagem por engano, por favor informe por o e-mail:</b>
|
||||
</span>
|
||||
<font color="#a9a9a9" style="background-color:transparent; text-align:center;">
|
||||
<b>
|
||||
</b>
|
||||
</font>
|
||||
<span style="background-color:transparent; text-align:center; color:rgb(0, 0, 255);">
|
||||
<b>
|
||||
<u>notificacoes@oapr.gov.ao</u>
|
||||
</b>
|
||||
</span>
|
||||
<br>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td align="center" style="padding:0; font-size:0;">
|
||||
<table border="0" width="100%" style="border-collapse:collapse; border-spacing:0px;">
|
||||
<tbody>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td style="padding:0; border-bottom:1px solid #cccccc; background:unset; height:1px; width:100%; margin:0px;">
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<table align="center" style="border-collapse:collapse; border-spacing:0px; width:100%;">
|
||||
<tbody>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td align="center" style="padding:0; background-color:#f5f7fb;">
|
||||
<table style="border-collapse:collapse; border-spacing:0px; background-color:transparent; width:680px;" align="center">
|
||||
<tbody>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td align="left" style="padding-top:10px; padding-bottom:10px; padding-left:20px; padding-right:20px;">
|
||||
<table width="100%" style="border-collapse:collapse; border-spacing:0px;">
|
||||
<tbody>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td valign="top" align="center" style="padding:0; width:640px;">
|
||||
<table width="100%" style="border-collapse:collapse; border-spacing:0px;">
|
||||
<tbody>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td align="left" style="padding:0;">
|
||||
<p style="font-family:arial, 'helvetica neue', helvetica, sans-serif; color:#000000; font-size:12px;">
|
||||
<strong>Gabinete Digital - Uma iniciativa do Presidente da República</strong>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div style="background-color:#F6F6F6;">
|
||||
<table width="100%" style="border-collapse:collapse; border-spacing:0px; padding:0; width:100%; height:100%; background-repeat:repeat; background-position:center top; background-color:#F6F6F6;">
|
||||
<tbody>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td valign="top" style="padding:0;">
|
||||
<table align="center" style="border-collapse:collapse; border-spacing:0px; width:100%;">
|
||||
<tbody>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td style="padding:0; background-color:#f5f7fb; background-size:cover;" align="center">
|
||||
<table style="border-collapse:collapse; border-spacing:0px; background-color:transparent; width:680px;" align="center">
|
||||
<tbody>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td align="left" style="padding-top:10px; padding-bottom:10px; padding-left:20px; padding-right:20px;">
|
||||
<table width="100%" style="border-collapse:collapse; border-spacing:0px;">
|
||||
<tbody>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td valign="top" align="center" style="padding:0; width:640px;">
|
||||
<table width="100%" style="border-collapse:collapse; border-spacing:0px;">
|
||||
<tbody>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td align="left" style="padding:0;">
|
||||
<p style="font-family:arial, 'helvetica neue', helvetica, sans-serif; color:#000000; font-size:12px;">
|
||||
<br>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td align="left" style="padding:0; padding-top:10px; padding-left:20px; padding-right:20px; background-color:#ffffff;">
|
||||
<table width="100%" style="border-collapse:collapse; border-spacing:0px;">
|
||||
<tbody>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td valign="top" align="center" style="padding:0; width:640px;">
|
||||
<table width="100%" style="border-collapse:collapse; border-spacing:0px;">
|
||||
<tbody>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td align="center" style="padding:0; padding-bottom:25px; padding-top:40px; font-size:0px;">
|
||||
<img src="https://gwjkdh.stripocdn.email/content/guids/videoImgGuid/images/governo_de_angola_horizontal_logo_MH1.png" style="display:block; border:0; text-decoration:none;" alt="Logo" title="Logo" width="160" height="136">
|
||||
</td>
|
||||
</tr>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td align="center" style="padding:0; padding-top:15px; padding-bottom:15px;">
|
||||
<h1 style="font-family:arial, 'helvetica neue', helvetica, sans-serif; font-size:22px; font-style:normal; font-weight:bold; color:#000000;">Rep<EFBFBD>blica de Angola</h1>
|
||||
<p style="font-family:arial, 'helvetica neue', helvetica, sans-serif; color:#000000; font-size:22px;">
|
||||
<strong> Gabinete do Presidente da </strong>
|
||||
<span style="background-color:transparent; font-size:22px;">
|
||||
<font color="#000000" face="arial, helvetica neue, helvetica, sans-serif">
|
||||
<b>Rep<EFBFBD>blica</b>
|
||||
</font>
|
||||
</span>
|
||||
</p>
|
||||
<p style="font-family:arial, 'helvetica neue', helvetica, sans-serif; color:#000000; font-size:22px;">
|
||||
<strong>Convite para reuni<EFBFBD>o</strong>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td align="left" style="padding:0; padding-left:40px; padding-right:40px; background-color:#ffffff;">
|
||||
<table align="right" style="border-collapse:collapse; border-spacing:0px;">
|
||||
<tbody>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td align="center" style="padding:0; width:174px;">
|
||||
<table width="100%" style="border-collapse:collapse; border-spacing:0px;">
|
||||
<tbody>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td align="center" style="padding:0; padding-top:10px; padding-left:20px; padding-right:20px; font-size:0;">
|
||||
<table width="100%" border="0" style="border-collapse:collapse; border-spacing:0px;">
|
||||
<tbody>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td style="padding:0; border-bottom:1px solid transparent; background:none; height:1px; width:100%; margin:0px;">
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td align="left" style="padding:0; background-color:#ffffff;">
|
||||
<table width="100%" style="border-collapse:collapse; border-spacing:0px;">
|
||||
<tbody>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td valign="top" align="center" style="padding:0; width:680px;">
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<table width="100%" style="border-collapse:collapse; border-spacing:0px;">
|
||||
<tbody>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td align="center" style="padding:0; font-size:0;">
|
||||
<table border="0" width="100%" style="border-collapse:collapse; border-spacing:0px;">
|
||||
<tbody>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td style="padding:0; border-bottom:1px solid #cccccc; background:unset; height:1px; width:100%; margin:0px;">
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td align="left" style="padding-top:15px; padding-bottom:20px; padding-left:40px; padding-right:40px;">
|
||||
<p style="color:rgb(169, 169, 169);">
|
||||
<strong style="">
|
||||
<font face="Arial" style="" size="2">Tipo de evento</font>
|
||||
</strong>
|
||||
</p>
|
||||
<p style="color:#0000ff;">
|
||||
<font face="Arial" style="">
|
||||
<font size="2"><EFBFBD> EventType <br>
|
||||
</font>
|
||||
</font>
|
||||
</p>
|
||||
<p style="color:rgb(169, 169, 169);">
|
||||
<strong style="">
|
||||
<font face="Arial" style="" size="2">Data/Hora</font>
|
||||
</strong>
|
||||
</p>
|
||||
<p style="color:rgb(0, 0, 0);">
|
||||
<font face="Arial" style="">De StartDate a <EFBFBD> EndDate <font size="3"> </font>
|
||||
</font>
|
||||
</p>
|
||||
<p style="color:rgb(169, 169, 169);">
|
||||
<strong style="">
|
||||
<font face="Arial" style="" size="2">Localiza<EFBFBD><EFBFBD>o</font>
|
||||
</strong>
|
||||
</p>
|
||||
<p style="color:rgb(0, 0, 0);"> Location <br>
|
||||
</p>
|
||||
<strong style="">
|
||||
<font face="Arial" style="" size="2">Participantes</font>
|
||||
</strong>
|
||||
<p>
|
||||
</p>
|
||||
<p style="color:rgb(0, 0, 0);"> Participants <br>
|
||||
</p>
|
||||
<font face="Arial" size="3"><EFBFBD> If <br>
|
||||
</font>
|
||||
<strong style="">
|
||||
<font face="Arial" style="" size="2">Assunto</font>
|
||||
</strong>
|
||||
<p>
|
||||
</p>
|
||||
<p style="color:rgb(0, 0, 0);"> Subject <br>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td align="center" style="padding:0; font-size:0;">
|
||||
<table border="0" width="100%" style="border-collapse:collapse; border-spacing:0px;">
|
||||
<tbody>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td style="padding:0; border-bottom:1px solid #cccccc; background:unset; height:1px; width:100%; margin:0px;">
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td align="left" style="padding-top:15px; padding-bottom:20px; padding-left:40px; padding-right:40px;">
|
||||
<p style="font-family:arial, 'helvetica neue', helvetica, sans-serif; color:#a9a9a9; font-size:12px;">
|
||||
<strong>Mensagem</strong>
|
||||
</p>
|
||||
<p style="color:rgb(0, 0, 0);">Exmo. Sr. MDGPR,<br>
|
||||
<br>Cordiais sauda<EFBFBD><EFBFBD>es.<br>
|
||||
<br>Recebeu um novo pedido de evento, no qual requer Vossa aprova<EFBFBD><EFBFBD>o.<br>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td align="center" style="padding:0; font-size:0;">
|
||||
<table border="0" width="100%" style="border-collapse:collapse; border-spacing:0px;">
|
||||
<tbody>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td style="padding:0; border-bottom:1px solid #cccccc; background:unset; height:1px; width:100%; margin:0px;">
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td align="left" style="padding-top:15px; padding-bottom:20px; padding-left:40px; padding-right:40px;">
|
||||
<p style="font-family:arial, 'helvetica neue', helvetica, sans-serif; color:#999999; font-size:12px;">
|
||||
<span style="background-color:transparent; text-align:center;">
|
||||
<font color="#a9a9a9">
|
||||
<br>Importante
|
||||
</font>
|
||||
</span>
|
||||
<span style="color:#0000ff; background-color:transparent; text-align:center;">
|
||||
</span>
|
||||
</p>
|
||||
<p style="font-family:arial, 'helvetica neue', helvetica, sans-serif; color:#999999; font-size:12px;">
|
||||
<span style="background-color:transparent; text-align:center; color:rgb(0, 0, 0);">
|
||||
<b>Caso tenha recebido esta mensagem por engano, por favor informe por o e-mail:</b>
|
||||
</span>
|
||||
<font color="#a9a9a9" style="background-color:transparent; text-align:center;">
|
||||
<b>
|
||||
</b>
|
||||
</font>
|
||||
<span style="background-color:transparent; text-align:center; color:rgb(0, 0, 255);">
|
||||
<b>
|
||||
<u>notificacoes@oapr.gov.ao</u>
|
||||
</b>
|
||||
</span>
|
||||
<br>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td align="center" style="padding:0; font-size:0;">
|
||||
<table border="0" width="100%" style="border-collapse:collapse; border-spacing:0px;">
|
||||
<tbody>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td style="padding:0; border-bottom:1px solid #cccccc; background:unset; height:1px; width:100%; margin:0px;">
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<table align="center" style="border-collapse:collapse; border-spacing:0px; width:100%;">
|
||||
<tbody>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td align="center" style="padding:0; background-color:#f5f7fb;">
|
||||
<table style="border-collapse:collapse; border-spacing:0px; background-color:transparent; width:680px;" align="center">
|
||||
<tbody>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td align="left" style="padding-top:10px; padding-bottom:10px; padding-left:20px; padding-right:20px;">
|
||||
<table width="100%" style="border-collapse:collapse; border-spacing:0px;">
|
||||
<tbody>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td valign="top" align="center" style="padding:0; width:640px;">
|
||||
<table width="100%" style="border-collapse:collapse; border-spacing:0px;">
|
||||
<tbody>
|
||||
<tr style="border-collapse:collapse;">
|
||||
<td align="left" style="padding:0;">
|
||||
<p style="font-family:arial, 'helvetica neue', helvetica, sans-serif; color:#000000; font-size:12px;">
|
||||
<strong>Gabinete Digital - Uma iniciativa do Presidente da Rep<EFBFBD>blica</strong>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
@@ -45,10 +45,6 @@
|
||||
background-color: white !important;
|
||||
margin: auto 0px;
|
||||
margin: 0px auto;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
}
|
||||
main {
|
||||
background-color: white !important;
|
||||
@@ -66,10 +62,12 @@
|
||||
margin: 20px 0;
|
||||
}
|
||||
|
||||
.m-auto { margin: 0px auto; }
|
||||
.px-40 { padding: 0px 40px; }
|
||||
.pb-40 { padding-bottom: 40px; }
|
||||
.pa-40 { padding: 40px; }
|
||||
.pa-30 { padding: 30px; }
|
||||
.pa-15 { padding: 15px; }
|
||||
|
||||
.f-22 { font-size: 22px; }
|
||||
.f-13 { font-size: 13px;}
|
||||
@@ -79,6 +77,7 @@
|
||||
.width-100 { width: 100%; }
|
||||
|
||||
.text-gray { color: rgb(169, 169, 169); }
|
||||
.link-color { color:rgb(0, 0, 255); }
|
||||
|
||||
</style>
|
||||
</head>
|
||||
@@ -87,10 +86,10 @@
|
||||
<main >
|
||||
|
||||
<div class="header" class="pa-40">
|
||||
<img class="ma-15" src="https://gwjkdh.stripocdn.email/content/guids/videoImgGuid/images/governo_de_angola_horizontal_logo_MH1.png" style="display:block; border:0; text-decoration:none;" alt="Logo" title="Logo" width="160" height="136">
|
||||
<p class="f-weight-600 f-22 ma-15">República De Angola</p>
|
||||
<p class="f-weight-600 f-22 ma-15">Gabinete do Presidente da República</p>
|
||||
<p class="f-weight-600 f-22 ma-15">Convite para reunião</p>
|
||||
<img class="pa-15 m-auto" src="https://gwjkdh.stripocdn.email/content/guids/videoImgGuid/images/governo_de_angola_horizontal_logo_MH1.png" style="display:block; border:0; text-decoration:none;" alt="Logo" title="Logo" width="160" height="136">
|
||||
<p class="f-22 ma-15 text-center"><b>República De Angola</b></p>
|
||||
<p class="f-22 ma-15 text-center"><b>Gabinete do Presidente da República</b></p>
|
||||
<p class="f-22 ma-15 text-center"><b>Convite para reunião</b></p>
|
||||
</div>
|
||||
|
||||
<hr/>
|
||||
@@ -136,13 +135,13 @@
|
||||
<div>
|
||||
<p class="text-gray f-13 d-block ">Importante</p>
|
||||
<span class="d-block ">Caso tenha recebido esta mensagem por engano, por favor informe por o e-mail:</span>
|
||||
<span class="d-block "> <a href="notificacoes@oapr.gov.ao" target="_blank">notificacoes@oapr.gov.ao</a></span>
|
||||
<span class="d-block link-color" > <u>notificacoes@oapr.gov.ao</u> </span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</main>
|
||||
<footer>
|
||||
<p> Gabinete Digital - Uma iniciativa do Presidente da República</p>
|
||||
<p> <b>Gabinete Digital - Uma iniciativa do Presidente da República</b></p>
|
||||
</footer>
|
||||
</body>
|
||||
|
||||
@@ -45,10 +45,6 @@
|
||||
background-color: white !important;
|
||||
margin: auto 0px;
|
||||
margin: 0px auto;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
}
|
||||
main {
|
||||
background-color: white !important;
|
||||
@@ -67,22 +63,23 @@
|
||||
margin: 20px 0;
|
||||
}
|
||||
|
||||
.m-auto { margin: 0px auto; }
|
||||
.d-block { display: block; }
|
||||
|
||||
.px-40 { padding: 0px 40px; }
|
||||
.pb-40 { padding-bottom: 40px; }
|
||||
.pa-40 { padding: 40px; }
|
||||
.pa-30 { padding: 30px; }
|
||||
.pa-15 { padding: 15px; }
|
||||
|
||||
.f-22 { font-size: 22px; }
|
||||
.f-13 { font-size: 13px;}
|
||||
.f-weight-600 { font-weight: 600; }
|
||||
.ma-15 { margin: 15px; }
|
||||
.text-center { text-align:center }
|
||||
.width-100 { width: 100%; }
|
||||
|
||||
.text-gray { color: rgb(169, 169, 169); }
|
||||
|
||||
.link-color { color:rgb(0, 0, 255); }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
@@ -90,10 +87,10 @@
|
||||
<main>
|
||||
|
||||
<div class="header" class="pa-40">
|
||||
<img class="ma-15" src="https://gwjkdh.stripocdn.email/content/guids/videoImgGuid/images/governo_de_angola_horizontal_logo_MH1.png" style="display:block; border:0; text-decoration:none;" alt="Logo" title="Logo" width="160" height="136">
|
||||
<p class="f-weight-600 f-22 ma-15">República De Angola</p>
|
||||
<p class="f-weight-600 f-22 ma-15">Gabinete do Presidente da República</p>
|
||||
<p class="f-weight-600 f-22 ma-15">Convite para reunião</p>
|
||||
<img class="pa-15 m-auto" src="https://gwjkdh.stripocdn.email/content/guids/videoImgGuid/images/governo_de_angola_horizontal_logo_MH1.png" style="display:block; border:0; text-decoration:none;" alt="Logo" title="Logo" width="160" height="136">
|
||||
<p class="f-22 ma-15 text-center"><b>República De Angola</b></p>
|
||||
<p class="f-22 ma-15 text-center"><b>Gabinete do Presidente da República</b></p>
|
||||
<p class="f-22 ma-15 text-center"><b>Convite para reunião</b></p>
|
||||
</div>
|
||||
|
||||
<hr/>
|
||||
@@ -138,13 +135,13 @@
|
||||
<div>
|
||||
<p class="text-gray f-13 d-block ">Importante</p>
|
||||
<span class="d-block ">Caso tenha recebido esta mensagem por engano, por favor informe por o e-mail:</span>
|
||||
<span class="d-block "> <a href="notificacoes@oapr.gov.ao" target="_blank">notificacoes@oapr.gov.ao</a></span>
|
||||
<span class="d-block link-color" > <u>notificacoes@oapr.gov.ao</u> </span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</main>
|
||||
<footer>
|
||||
<p> Gabinete Digital - Uma iniciativa do Presidente da República</p>
|
||||
<p> <b>Gabinete Digital - Uma iniciativa do Presidente da República</b></p>
|
||||
</footer>
|
||||
|
||||
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
export let versionData = {
|
||||
"shortSHA": "fea0279ad",
|
||||
"SHA": "fea0279ad79b15630652e0d39507d5499435c5ed",
|
||||
"shortSHA": "6d3887076",
|
||||
"SHA": "6d3887076102243aa85ee1ff6abb0b00b6bf2771",
|
||||
"branch": "feature/agenda-api-peter",
|
||||
"lastCommitAuthor": "'Peter Maquiran'",
|
||||
"lastCommitTime": "'Tue Jul 2 14:15:06 2024 +0100'",
|
||||
"lastCommitMessage": "Melhorias\nAlterar a ordem de apresentação do pop up sobre a recorrencia - Apresentar logo após o click no botão de edição do evento;\nA app não envia o comentario na revisão de eventos;\nAo remover a recorrência do evento a app não remove os eventos da Agenda",
|
||||
"lastCommitNumber": "5856",
|
||||
"changeStatus": "On branch feature/agenda-api-peter\nYour branch is ahead of 'origin/feature/agenda-api-peter' by 3 commits.\n (use \"git push\" to publish your local commits)\n\nChanges to be committed:\n (use \"git restore --staged <file>...\" to unstage)\n\tmodified: version/git-version.ts",
|
||||
"lastCommitTime": "'Tue Jul 2 14:16:36 2024 +0100'",
|
||||
"lastCommitMessage": "git chage",
|
||||
"lastCommitNumber": "5857",
|
||||
"changeStatus": "On branch feature/agenda-api-peter\nYour branch is ahead of 'origin/feature/agenda-api-peter' by 4 commits.\n (use \"git push\" to publish your local commits)\n\nChanges to be committed:\n (use \"git restore --staged <file>...\" to unstage)\n\tmodified: src/app/pages/agenda/edit-event/edit-event.page.html\n\tmodified: src/app/pages/agenda/edit-event/edit-event.page.ts\n\tmodified: src/app/pages/agenda/new-event/new-event.page.html\n\tmodified: src/app/pages/agenda/new-event/new-event.page.ts\n\tmodified: src/app/shared/agenda/edit-event-to-approve/edit-event-to-approve.page.html\n\tmodified: src/app/shared/agenda/edit-event-to-approve/edit-event-to-approve.page.ts\n\tmodified: src/app/shared/agenda/edit-event/edit-event.page.html\n\tmodified: src/app/shared/agenda/edit-event/edit-event.page.ts\n\tmodified: src/app/shared/gabinete-digital/edit-event-to-approve/edit-event.page.html\n\tmodified: src/app/shared/gabinete-digital/edit-event-to-approve/edit-event.page.ts\n\tmodified: version/Pedido_de_evento 1.html\n\tmodified: version/event-da-semana.html\n\tmodified: version/evento-revisao.html",
|
||||
"changeAuthor": "peter.maquiran"
|
||||
}
|
||||
Reference in New Issue
Block a user