View invite.ts
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(), |
View additionalServices.html
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" |
View variable-replacer.ts
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" |
View event_employee_invitation_template
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;\ |
View gist:0c90a2d38f2c4b75f0cf70948dbf8255
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") |
View input.scss
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; | |
} | |
View MailHog configuration
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 |
View countries.list.js
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", | |
}, | |
{ |
View React-Native-fonts.md
React Native System fonts
Supported by Android
- normal
- notoserif
- sans-serif
- sans-serif-light
NewerOlder