This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Duration | Date | Pulse | Maxpulse | Calories | |
---|---|---|---|---|---|
60 | '2020/12/01' | 110 | 130 | 409.1 | |
60 | '2020/12/02' | 117 | 145 | 479.0 | |
60 | '2020/12/03' | 103 | 135 | 340.0 | |
45 | '2020/12/04' | 109 | 175 | 282.4 | |
45 | '2020/12/05' | 117 | 148 | 406.0 | |
60 | '2020/12/06' | 102 | 127 | 300.0 | |
60 | '2020/12/07' | 110 | 136 | 374.0 | |
450 | '2020/12/08' | 104 | 134 | 253.3 | |
30 | '2020/12/09' | 109 | 133 | 195.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private inviteVendor(vendor: OrganizationItem, contactPerson?: any) { | |
this.loading = true; | |
this.organizationService.getOrganizationById(this.clientInfo.itemId).subscribe({ | |
next: (res) => { | |
this.eventService | |
.inviteVendorToEvent({ | |
EventInviteVendorReference: [ | |
{ | |
EventInviteVendor: { | |
createDate: new Date(), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div | |
#additionalServices | |
class="d-none" | |
> | |
<div | |
class="additional_services" | |
style="background: #f5fbff; background-color: #f5fbff; margin: 0px auto; max-width: 715px" | |
> | |
<table | |
align="center" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Replaces the string with the object key value | |
* @param obj - object to be replaced | |
* @param data - string to be replaced | |
* @param variableIdentifiers | |
* @returns string | |
* | |
* @example | |
* replacer({ name: "Rayhan", age: 26 }, "my name is #name# and my age is #age#", ["#_#", "{{_}}"]) | |
* // returns "my name is Rayhan and my age is 26" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"<!doctype html>\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\">\n\n<head>\n <title> Event Invitation </title>\n <!--[if !mso]><!-->\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <!--<![endif]-->\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n <style type=\"text/css\">\n #outlook a {\n padding: 0;\n }\n\n body {\n margin: 0;\n padding: 0;\n -webkit-text-size-adjust: 100%;\n -ms-text-size-adjust: 100%;\n }\n\n table,\n td {\n border-collapse: collapse;\n mso-table-lspace: 0pt;\n mso-table-rspace: 0pt;\n }\n\n img {\n border: 0;\n height: auto;\n line-height: 100%;\n outline: none;\n text-decoration: none;\n -ms-interpolation-mode: bicubic;\n }\n\n p {\n display: block;\n margin: 13px 0;\ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
model File { | |
id String @id @default(auto()) @map("_id") @db.ObjectId | |
name String | |
key String | |
bucket String | |
events Event[] @relation("EventLogos") | |
eventDocs Event[] @relation("EventDocs") | |
@@map("files") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@mixin font-dm($size, $line-height: 1.1em){ | |
font-family: "DM Sans"; | |
font-style: normal; | |
font-weight: 500; | |
font-size: $size; | |
line-height: $line-height; | |
} | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Mailhog | |
MAIL_MAILER=smtp | |
MAIL_HOST=0.0.0.0 | |
MAIL_PORT=1025 | |
MAIL_USERNAME=null | |
MAIL_PASSWORD=null | |
MAIL_ENCRYPTION=null |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const countries = [ | |
{ | |
value: "Afghanistan", | |
label: "Afghanistan", | |
}, | |
{ | |
value: "Albania", | |
label: "Albania", | |
}, | |
{ |
NewerOlder