Skip to content

Commit

Permalink
✔ Refactor ~
Browse files Browse the repository at this point in the history
  • Loading branch information
bifeldy committed Nov 8, 2023
1 parent b0da0b3 commit dc052ed
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 6 deletions.
20 changes: 15 additions & 5 deletions src/api/controllers/mail.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,18 +94,28 @@ export class MailController {
properties: {
to: {
type: 'array',
items: { type: 'string' }
items: {
type: 'string'
}
},
cc: {
type: 'array',
items: { type: 'string' }
items: {
type: 'string'
}
},
bcc: {
type: 'array',
items: { type: 'string' }
items: {
type: 'string'
}
},
subject: { type: 'string' },
message: { type: 'string' }
subject: {
type: 'string'
},
message: {
type: 'string'
}
},
required: ['to', 'subject', 'message']
}
Expand Down
14 changes: 13 additions & 1 deletion src/app/_pages/home/home.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<img class="p-5" src="{{ ENV.baseUrl }}/assets/img/favicon.png" />
</a>
<h1 class="h3 font-weight-normal gradient-text">{{ ENV.siteName }}</h1>
<h2 class="text-warning pt-3">
<h2 class="pt-3">
<p class="col-12 col-lg-8 mx-auto">
Tempat berbagi (+ <i>backup</i>) dan melacak sekaligus mengabadikan berkas proyek garapan
animasi maupun film drama dari, oleh, untuk siapa saja.
Expand All @@ -34,6 +34,18 @@ <h3 class="text-success" matTooltip="Khusus Berkas Yang Upload DDL">
</a>
</div>
</div>
<div class="row pb-3">
<div class="col-12 col-lg-8 mx-auto">
<a class="m-1" mat-stroked-button routerLink="/mailbox" color="accent">
<mat-icon fontIcon="mail_outline" class="me-1"></mat-icon>
Kotak Surat Elektronik
</a>
<a class="m-1" mat-stroked-button routerLink="/nihongo" color="accent">
<mat-icon fontIcon="translate" class="me-1"></mat-icon>
Belajar Bahasa Jepang
</a>
</div>
</div>
</div>
</div>
</div>
Expand Down

0 comments on commit dc052ed

Please sign in to comment.