-
-
Notifications
You must be signed in to change notification settings - Fork 479
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0e81c48
commit c596e23
Showing
10 changed files
with
104 additions
and
43 deletions.
There are no files selected for viewing
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,16 @@ | ||
#!/bin/sh | ||
#!/usr/bin/env bash | ||
|
||
source="${BASH_SOURCE}" | ||
base_dir=$(dirname $(dirname "$source")) | ||
|
||
echo "Checking environment..." | ||
node scripts/preinstall | ||
script=scripts/preinstall | ||
node "$base_dir/$script" | ||
|
||
echo "Preparing the database..." | ||
node scripts/postinstall | ||
script=scripts/postinstall | ||
node "$base_dir/$script" | ||
|
||
echo "Starting..." | ||
node src/ | ||
script=src/ | ||
node "$base_dir/$script" |
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
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
Empty file.
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
#{{ channelName }} ticket transcript | ||
|
||
--- | ||
|
||
* ID: {{ ticket.id }} ({{ guildName }}) | ||
* Number: {{ ticket.category.name }} #{{ ticket.number }} | ||
* Topic: {{ #ticket.topic }}{{ . }}{{ /ticket.topic }}{{ ^ticket.topic }}(no topic){{ /ticket.topic }} | ||
* Created on: {{ #ticket }}{{ createdAtFull }}{{ /ticket }} | ||
* Created by: {{ #ticket.createdBy }}"{{ displayName }}" @{{ username }}#{{ discriminator }}{{ /ticket.createdBy }} | ||
* Closed on: {{ #ticket }}{{ closedAtFull }}{{ /ticket }} | ||
* Closed by: {{ #ticket.closedBy }}"{{ displayName }}" @{{ username }}#{{ discriminator }}{{ /ticket.closedBy }}{{ ^ticket.closedBy }}(automated){{ /ticket.closedBy }} | ||
* Closed because: {{ #ticket.closedReason }}{{ ticket.closedReason }}{{ /ticket.closedReason }}{{ ^ticket.closedReason }}(no reason){{ /ticket.closedReason }} | ||
* Claimed by: {{ #ticket.claimedBy }}"{{ displayName }}" @{{ username }}#{{ discriminator }}{{ /ticket.claimedBy }}{{ ^ticket.claimedBy }}(not claimed){{ /ticket.claimedBy }} | ||
{{ #ticket.feedback }} | ||
* Feedback: | ||
* Rating: {{ rating }}/5 | ||
* Comment: {{ comment }}{{ ^comment }}(no comment){{ /comment }} | ||
{{ /ticket.feedback }} | ||
* Participants: | ||
{{ #ticket.archivedUsers }} | ||
* "{{ displayName }}" @{{ username }}#{{ discriminator }} ({{ userId }}) | ||
{{ /ticket.archivedUsers }} | ||
* Pinned messages: {{ #pinned }}{{ . }}{{ /pinned }} | ||
|
||
--- | ||
|
||
{{ #ticket.archivedMessages }} | ||
<{{ number }}> [{{ createdAtTimestamp }}] {{author.displayName}}: {{ text }} | ||
|
||
{{ /ticket.archivedMessages }} |
Empty file.